
.logo {
    max-width: 250px;
}

.responsive-img {
    height: 81vh;
    width: 100%;
    object-fit: cover;
}

@media screen and (min-width: 430px) and (min-height: 932px) {
    .responsive-img {
        height: 45vh;
    }
}

.truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.feature {
    cursor: pointer;
    background-color: #ffffff; /* clean white background */
    border: 1px solid #ccc; /* subtle border */
    padding: 20px;
    border-radius: 8px; 
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* soft shadow */
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    user-select: none;
    color: #333333; /* dark text */
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}


    .feature:hover {
        background-color: #f5f7fa; /* very light gray on hover */
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        border-color: #007bff; /* subtle blue border highlight */
        color: #007bff; /* text turns blue */
    }

    .feature:active {
        background-color: #e9eff7; /* slightly darker gray */
        box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
        border-color: #0056b3;
        color: #0056b3;
    }

    .feature.selected {
        /*border-color: #004085;
        background-color: #cce5ff;*/ /* light blue highlight */
        /*color: #004085;
        box-shadow: 0 0 10px #004085;*/
        background-color: #f5f7fa; /* very light gray on hover */
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        border-color: #007bff; /* subtle blue border highlight */
        color: #007bff; /* text turns blue */
    }



.feature.highlight {
    border: 2px solid #1a73e8;
    box-shadow: 0 0 12px rgba(26, 115, 232, 0.4);
    transition: box-shadow 0.3s ease;
}



.calendar-container {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .calendar-header button {
        background: none;
        border: none;
        font-size: 18px;
        cursor: pointer;
    }

.day-names {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
    margin-top: 5px;
}
    .calendar-grid > div {
        padding: 10px 0;
        font-weight: 600;
        cursor: default;
        user-select: none;
        border-radius: 4px;
        position: relative;
    }

        .calendar-grid > div.weekend{
            color: #b1b1b1; /*faded-text-color */
            pointer-events: none;
            cursor: not-allowed; 
        }


        .calendar-grid > div.today {
            font-weight: 900;
            color: #007bff;
        }

            .calendar-grid > div.today::after {
                content: "";
                position: absolute;
                top: 50%;
                left: 50%;
                width: 34px;
                height: 34px;
                border: 2px solid #007bff;
                border-radius: 50%;
                transform: translate(-50%, -50%);
                pointer-events: none;
            }
        .calendar-grid > div.PastDates {
            pointer-events: none !important;
            opacity: 0.4;
            color: #b1b1b1 !important;
            cursor: not-allowed !important;
        }

        .calendar-grid .date-cell {
            padding: 10px;
            border-radius: 5px;
            cursor: pointer;
        }
        .calendar-grid .date-cell.disabled {
            pointer-events: none !important;
            opacity: 0.4;
            color: #b1b1b1 !important;
            cursor: not-allowed !important;
        }

        .calendar-grid .date-cell:hover {
            background-color: #eef2ff;
        }

        .calendar-grid .date-cell.selected {
            background-color: #3b82f6;
            color: white;
        }

    .calendar-grid .timeslot-row {
        grid-column: span 7;
        padding: 10px;
        background-color: #f0f8ff;
        border-radius: 6px;
        animation: fadeIn 0.3s ease-in-out;
    }

    .calendar-grid .slot {
        display: inline-block;
        background: #e0e7ff;
        margin: 5px;
        padding: 8px 12px;
        border-radius: 5px;
        cursor: pointer;
    }

        .calendar-grid .slot.selected {
            background-color: #10b981;
            color: white;
        }

.booked {
    pointer-events: none !important;
    background-color: #ffe5e5 !important;
    color: #a00 !important;
    font-weight: bold;
    cursor: not-allowed !important;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.button-group {
    display: flex;
    gap: 10px;
    padding: 16px;
}

.btn {
    padding: 10px 16px;
    font-size: 14px;
    line-height: 1.4;
    border: 1px solid #ccc;
    border-radius: 4px;
    /*background-color: #f5f5f5;*/
    cursor: pointer;
    /*transition: background-color 0.2s, color 0.2s;*/
}

    .btn:hover {
        /*background-color: #007bff;*/
        /*color: white;*/
        /*border-color: #007bff;*/
    }

    .btn.active {
        /*background-color: #007bff;*/
        /*color: white;
        border-color: #007bff;*/
    }

.no-margin {
    margin: 0 !important;
    padding: 0 !important;
}


.btn-group-wrapper {
    max-width: 400px; 
    margin: 10px auto; /
    text-align: center;
}

.pill-group {
    display: flex;
    justify-content: center;
  
}

    .pill-group .btn {
       /* background-color: #4a7d66;*/
        /*color: white;*/
        border: none;
        border-radius: 999px;
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 500;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease, background 0.3s ease;
        cursor: pointer;
       
    }


        .pill-group .btn:hover {
            transform: translateY(-1px);
            /*background: #7a9989;*/
        }

        .pill-group .btn:active {
            transform: scale(0.96);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }

    

@media (min-width: 779px)
{
    .container .pos-vertical-center .row{
        max-height: 1px;
        overflow: hidden;
    }
}

select {
    flex: 1;
    padding: 10px 14px;
    font-size: 16px;
    background-color: #FCFCFC;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: border 0.3s, box-shadow 0.3s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='gray' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    color: #BFCCD9;
}

    select:focus {
        border-color: #007BFF;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
        outline: none;
        background-color: #fff;
        color: #007bff;
    }



.contact-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 16px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

    .contact-card img {
        width: 56px;
        height: 56px;
        object-fit: cover;
        border-radius: 50%;
    }
    
.contact-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-email,
.contact-date {
    margin-bottom: 2px;
    color: #6c757d;
    font-size: 0.95rem;
}
.modal-content {
    background-color: #1c1c2e;
    color: white;
    border-radius: 1rem;
}
