﻿h1 {
    color: var(--easybook-main-colour);
}

.service-details {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
}

.available {
    background-color: rgba(var(--bs-success-rgb), 0.1) !important;
    cursor: pointer;
}

.appointment-slot {
    width: 60px;
    border: 1px solid rgb(0, 0, 0);
    margin: 3px 0px;
}

.busy {
    background-color: rgba(var(--bs-danger-rgb), 0.1) !important;
    text-decoration: line-through;
    cursor: not-allowed;
}

.closed {
    background-color: var(--bs-gray-500) !important;
    cursor: default;
    border: 1px solid #dee2e6;
    cursor: not-allowed;
}

.selected {
    outline: 2px solid var(--bs-gray-900);
    background-color: rgba(var(--bs-success-rgb), 0.8) !important;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    padding-right: 2px;
    padding-left: 2px;
}

th {
    color: var(--easybook-main-colour) !important;
}

.btn-arrow {
    background-color: var(--easybook-main-colour);
    border-color: var(--easybook-main-colour);
    color: white;
}

@@media (max-width: 767px) {
    td {
        border: 1px solid #d1cfcf;
    }
}

div.iti {
    width: 100%;
}

.service-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(0,0,0,0.125);
    border-radius: 0.75rem;
    overflow: hidden;
}

    .service-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    }

.staff-card {
    transition: background-color 0.2s;
    border-radius: 0.5rem;
}

    .staff-card:hover {
        background-color: #f8f9fa;
    }

.time-slot {
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.2s;
}

    .time-slot.available {
        background-color: #e7f5ff;
        color: #0d6efd;
        cursor: pointer;
    }

        .time-slot.available:hover {
            background-color: #cfe2ff;
        }

.summary-card {
    background-color: #f8f9fa;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.staff-profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.attendance-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-details {
    color: #6c757d;
    font-size: 0.9rem;
}

.nav-week-buttons .btn {
    border-radius: 0.5rem;
    padding: 0.5rem 1.25rem;
}
