body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0; padding: 0;
    background: #f5f7fa;
    color: #333;
}

nav {
    background: #2575fc;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

nav .logo {
    font-weight: 700;
    font-size: 1.3rem;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0; padding: 0;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #a8c0ff;
}

.container {
    max-width: 480px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

h1, h2 {
    color: #2575fc;
    margin-bottom: 1.5rem;
    text-align: center;
}

form label {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
}

form input[type=text],
form input[type=email],
form input[type=password],
form textarea,
form select {
    width: 100%;
    padding: 0.6rem;
    margin-top: 0.3rem;
    border: 1.5px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

form input[type=text]:focus,
form input[type=email]:focus,
form input[type=password]:focus,
form textarea:focus,
form select:focus {
    border-color: #2575fc;
    outline: none;
}

form button {
    margin-top: 1.8rem;
    width: 100%;
    padding: 0.8rem;
    background: #2575fc;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background: #1a52d1;
}

.error {
    background: #ffdddd;
    border-left: 6px solid #f44336;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    color: #a33;
}

.success {
    background: #ddffdd;
    border-left: 6px solid #4CAF50;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    color: #2a662a;
}

.status {
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    display: inline-block;
    min-width: 80px;
    text-align: center;
}

.status.Pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.status.Accepted {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status.Rejected {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Nav Menu */
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        width: 100%;
    }
    nav ul li {
        margin: 0.5rem 0;
    }
    .container {
        margin: 1rem;
        padding: 1.5rem;
    }
}
@media (max-width: 768px) {
  .container {
    padding: 1rem !important;
  }
  form input, form select, form textarea {
    width: 100% !important;
  }
}
