body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f8ff; /* Light Blue */
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    background-color: #ffc0cb; /* Pink */
    color: white;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

header h1 {
    margin: 0;
    font-size: 2.2em;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover, nav a.active {
    background-color: rgba(255, 255, 255, 0.3);
}

main {
    padding: 2rem;
}

.content-section {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.hidden {
    display: none;
}

/* Form Styles */
#passport-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

#passport-form input, #passport-form button {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
}

#passport-form button {
    background-color: #272eb7; /* Light Blue */
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

#passport-form button:hover {
    background-color: #4c00ff; /* Sky Blue */
}

/* Style for the disabled button state */
#passport-form button:disabled {
    background-color: #6e96ae; /* Light Gray */
    cursor: not-allowed;
}

/* Passport Display Styles */
#passport-display {
    margin-top: 2rem;
    text-align: left;
}

.passport-card {
    background: #eef7ff;
    border: 2px dashed #add8e6;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.passport-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.passport-info h3 {
    margin: 0 0 0.5rem 0;
    color: #ffc0cb;
    text-shadow: 1px 1px 1px #ccc;
}

/* Download Button Style */
#download-btn {
    margin-top: 1.5rem;
    padding: 12px 24px;
    border-radius: 5px;
    border: none;
    background-color: #5cb85c; /* A nice green for success/download */
    color: white;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

#download-btn:hover {
    background-color: #4cae4c;
}

/* Discord Button Style */
.discord-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 24px;
    border-radius: 5px;
    border: none;
    background-color: #5865F2; /* Discord Blurple */
    color: white;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.discord-btn:hover {
    background-color: #4752C4;
}