/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #f8fafc;
}

/* Header Styles */
header {
    background-color: #003c5f;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #003c5f;
    text-decoration: none;
    font-weight: 500;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.content-header {
    color: #003c5f;
    margin-bottom: 2rem;
}

.content-section {
    background: #C3E4E9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-primary {
    background: #003c5f;
    color: white;
}

.btn-primary:hover {
    background: #002d47;
}

.logout-btn {
    display: inline-block;
    background-color: #003c5f;
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
}

.logout-btn:hover {
    background-color: #002d47;
    color: white;
    text-decoration: none;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color : #003c5f;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #C3E4E9;
}

.form-submit {
    background: #003c5f;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
}

.form-submit:hover {
    background: #002d47;
}

/* Form and Search Styles */
input[type="text"],
input[type="search"],
.search-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    color: #4a5568;
    background-color: white;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="search"]:focus,
.search-input:focus {
    outline: none;
    border-color: #003c5f;
    box-shadow: 0 0 0 2px rgba(0, 60, 95, 0.1);
    background-color: white;
}

input::placeholder {
    color: #a0aec0;
}

/* Footer */
footer {
    background-color: #003c5f;
    color: white;
    padding: 2rem;
    margin-top: 4rem;
    text-align: center;
}
