body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f6f6f6;
}
.sidebar {
    width: 220px;
    background: #263047;
    color: #fff;
    height: 100vh;
    position: fixed;
    left: 0; top: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    padding-top: 40px;
}
.sidebar h2 {
    font-size: 1.4rem;
    margin: 0 0 2rem 0;
    text-align: center;
}
.sidebar a {
    color: #fff;
    text-decoration: none;
    padding: 16px 32px;
    display: block;
    font-size: 1.1rem;
    transition: background 0.2s;
}
.sidebar a:hover {
    background: #33406a;
}
.main-content {
    margin-left: 220px;
    padding: 30px 0;
    min-height: 100vh;
}
.details-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.11);
    padding: 32px 30px 24px 30px;
}
.form-flex {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.form-row label {
    width: 140px;
    font-weight: bold;
}
.form-row input[type="text"],
.form-row input[type="password"],
.form-row input[type="email"] {
    flex: 1;
    padding: 6px 10px;
    border: 1px solid #bbb;
    border-radius: 4px;
}
.form-row input[type="submit"],
.form-row button {
    padding: 6px 18px;
    border: 1px solid #bbb;
    border-radius: 4px;
    background: #f4f4f4;
    cursor: pointer;
    font-size: 1rem;
    margin-right: 6px;
    transition: background 0.2s;
}
.form-row input[type="submit"]:hover,
.form-row button:hover {
    background: #e0e0e0;
}
.scholarship-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
.scholarship-table th, .scholarship-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
.scholarship-table th {
    background: #263047;
    color: #fff;
    font-weight: bold;
}
@media (max-width: 800px) {
    .sidebar { width: 100px; }
    .main-content { margin-left: 100px; }
    .sidebar a { font-size: 0.95rem; padding: 12px 12px; }
    .details-container { max-width: 95vw; padding: 10px; }
    .form-row label { width: 90px; }
}
.main-header {
    width: 100vw;
    background: #232b3a;
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    padding: 20px 0 15px 0;
    letter-spacing: 1.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

body {
    padding-top: 70px; /* Add this so your content is not hidden behind the fixed header */
}