
header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}
header div{
    text-align: center; 
    font-size: 2rem; 
}
header a{
    text-decoration: none; 
    border: 1px solid #000;
    border-radius: 50%;
    display: inline-block;
    padding: 5px 6px;
}
header a i{
    font-size: 20px;
    color: #000;
    font-weight: bold;
    font-family: monospace;
}

.all-cards-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem;
}

.all-class-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 200px;
    border: 1px solid #ccc;
    padding: 0.6rem 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    max-width: 300px;
    min-width: 270px;
    border-radius: 10px;
}

.all-class-card img {
    width: 50px;
    height: auto;
}

.class-details {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.class-title {
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
}

.class-info {
    color: #666;
    font-weight: medium;
}