
/* General Styling */
body {
    margin: 0;
    padding: 0;
    background-color: #121212; /* Dark mode */
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.apple-header {
    background-color: #181818;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}

.apple-style-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.apple-style-nav li {
    display: inline;
}

.apple-style-nav li a {
    text-decoration: none;
    font-size: 1.2rem;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.apple-style-nav li a:hover {
    background-color: #ffffff;
    color: #121212;
}

/* Content Area Styling (Inspired by Selemen) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

h1, h2, h3 {
    margin: 20px 0;
    color: #fff;
}

/* Debugging Bar */
.debug-bar {
    background-color: #ff4500;
    color: #ffffff;
    font-family: monospace;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    display: none; /* Initially hidden */
}

.debug-bar.active {
    display: block;
}

/* Modal Styling */
#wishModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* Overlay behind the modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Visible modal and overlay */
.modal-overlay.active,
#wishModal.active {
    display: block;
}

/* Buttons and Inputs */
textarea, button {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

button {
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

button.delete {
    background-color: #dc3545;
    color: #fff;
}

button.delete:hover {
    background-color: #a71d2a;
}

/* Enhancements for better button visibility */
button {
    padding: 10px 15px;
    font-size: 1rem;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}
