body{
    background-color: #0F111A !important;
}

.head{
    background-color: #1E1E2F;
    padding: 15px;
    border-radius: 0px 0 25px 25px;
    margin-top: 0px;
}

.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header img{
    border-radius: 25px;
    width: 170px;
    transition: 1s;
}

.header img:hover{
    transform: scale(1.05);
}

.header-btn a{
    font-family: "Cairo", sans-serif;
    margin-left: 5px;
    font-size: 18px;
    color: white;
    background-color: #3B82F6;
    border-radius: 15px;
    padding: 20px;
    text-decoration: none;
    transition: 1s;
}
.header-btn a:hover{
    background-color: #14B8A6;
    transform: scale(1.05);
    
}

.test{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    

    
    
}
.test h1{
    color: white;
    background-color: #1e1e2f;
    padding: 15px;
    border-radius: 15px;
    transition: 1s;

}
.test h1:hover{
    transform: scale(1.1);
}
.main-title {
    font-family: "Cairo", sans-serif;
    font-size: 30px;
    background-color: #3B3B55;
    color: white;
    text-align: center;
    padding: 15px 20px;
    border-radius: 15px;
    margin-top: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.schedule-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.schedule-card {
    background-color: #1E1E2F;
    color: white;
    padding: 20px;
    border-radius: 15px;
    width: 280px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-family: "Cairo", sans-serif;
    transition: transform 0.3s;
}

.schedule-card:hover {
    transform: scale(1.05);
}

.schedule-card h2 {
    margin-bottom: 10px;
    color: #3B82F6;
}

.schedule-card p {
    font-size: 18px;
}

