/*backend/domains/schedule/static/schedule/css/cards.css*/

/* ============================
   CARD VIEW (doctor cards)
============================ */

.card-scroll-wrapper {
    max-height: 550px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
}

.card-scroll-wrapper .row > .col-md-6 {
    display: flex;
}

.card {
    background-color: #e5f3ff !important;
    border: 1px solid #cfddee;
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: scale(1.02);
}

.card-title {
    color: #000305;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    background-color: #a2b9fd !important;
    color: #444445;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.list-group-item {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    display: flex;
    justify-content: space-between;
}

.vacation-text,
.weekend-text {
    color: #023dfd;
    font-weight: normal !important;
}

.schedule-day-link {
    color: #0d6efd;
    cursor: pointer;
}

.schedule-day-link:hover {
    color: #084298;
    text-decoration: underline !important;
}