body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: white;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

.parent {
    display: flex;
    gap: 20px;
    align-items: center;
    height: 80vh;
    position: relative;
}

.exam-information {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.seating-plan {
    flex: 2.5;
    /*display: flex;*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align:center;
    padding: 40px;
    margin-bottom: 40px;
}

.bottom-message {
    /*padding: 20px;*/
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.3em;
}

.header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    text-align: center;
    animation: fadeInUp 1s ease-out, floatAnimation 3s ease-in-out infinite alternate;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);

}

@keyframes floatAnimation {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(20px);
    }
}

.title {
    color: white;
    margin-top: 30px;
    font-size: 5em;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);

}

.seat-table {
    width: 100%;
}
.seat-table td {
    padding: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    font-size:2em;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);

}
.exam-title {
    color: #2c3e50;
    margin-top: 20px;
    font-size: 5em;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.time-info {
    font-size:1.7em;
    margin: 10px 0;
    color: #34495e;
}
.status {
    font-size: 2em;
    margin: 20px 0;
    padding: 15px;
    border-radius: 10px;
}

.exam-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 16px;
    text-align: center;
    margin:20px;
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 20px;
    position: relative;
}

.exam-venue {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 1px;
}

.exam-date {
    font-size: 32px;
    color: #2c3e50;
    font-weight: 600;
}
.exam-time {
    letter-spacing: 1px;
    font-size: 35px;
    font-weight: 600;
    color: #2c3e50;
}


.next-exam-info {
    position: absolute;
    right: 20px;
    text-align: right;
    min-width: 200px;
}

.next-exam-label {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.next-exam-content {
    font-size: 18px;
    color: #2c3e50;
    font-weight: 500;
}