body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    padding: 20px;

    /* Professional School Gradient */
    background: linear-gradient(135deg, #53789c, #4d7194, #627294);
    color: white;
}

h1, h2 {
    text-align: center;
}

.slider {
    position: relative;
    height: 60vh;
    overflow: hidden;
    border-radius: 10px;
}

.slide {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    display: none;
}

.slide.active {
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 60vh;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

button {
    padding: 10px 15px;
    background: #ffcc00;
    border: none;
    color: #003366;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: white;
}

form, table, #studentDetails, #dashboard, #subjectAnalysis {
    background: rgba(255,255,255,0.95);
    color: black;
    padding: 15px;
    border-radius: 8px;
    margin: 20px auto;
    width: 90%;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
}

th {
    background: #003366;
    color: white;
}

.delete-btn {
    background: red;
    color: white;
}

.promo-btn {
    background: green;
    color: white;
}

.footer {
    text-align: center;
    margin-top: 20px;
}