.custom-swal-popup {
    width: 50%;
}

.custom-swal-popup-city {
    width: 80%;
}

.teacher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(186px, 1fr));
    grid-template-rows: repeat(1, 1fr);
    gap: 20px;
}

.teacher-card-detail {
    padding: 10px;
    border-radius: 10px;
    background-color: #f05b8c;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
}

.teacher-card-detail h4 {
    font-size: 14px;
    font-weight: bold;
    color: #fff !important;
}

.teacher-card-detail span {
    display: block;
    font-size: 14px;
    color: #fff !important;
}

@media screen and (max-width: 992px) {
    .custom-swal-popup {
        width: 70%;
    }
}

@media screen and (max-width: 576px) {
    .custom-swal-popup {
        width: 100%;
    }

    .custom-swal-html-container h5 {
        font-size: 16px;
    }

    .custom-swal-html-container h5+span {
        font-size: 14px;
    }
}