.chat-contact {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 2px 0;
}

.chat-contact:hover {
    background-color: #f8f9fa;
}

.chat-contact.active {
    background-color: #e8f4ff;
    border-left: 3px solid #1b84ff;
}

/* .own-message .message-item.d-flex.justify-content-start {
    justify-content: flex-end !important;
}

.message-item.own-message .message-bubble {
    background-color: #1b84ff !important;
    color: white !important;
}

.own-message .message-item.align-items-start {
    align-items: flex-end !important;
}

.own-message .message-item.text-start {
    text-align: right !important;
} */

.pending-message .message-item {
    opacity: 0.7;
}

.failed-message .message-item {
    opacity: 0.8;
    border-left: 3px solid #f1416c;
}

.message-status {
    margin-left: 5px;
}

.retry-message {
    color: #f1416c;
    cursor: pointer;
    transition: all 0.2s ease;
}

.retry-message:hover {
    color: #d9214e;
    transform: scale(1.1);
}

#file-preview .file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e1e3ea;
}

#file-preview .file-item:last-child {
    border-bottom: none;
}

.pac-container {
    z-index: 1000000 !important;
}





.calendar-container {
    overflow-x: auto;
    min-height: 500px;
    background-color: #f1f1f2;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #e4e6ea;
    min-width: 1200px; /* Ensures minimum width for 7 columns */
}

.calendar-column {
    background-color: white;
    min-height: 500px;
    min-width: 250px; /* Minimum width per column */
}

.day-header {
    background-color: #f8f9fa;
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid #e4e6ea;
    position: sticky;
    top: 0;
    z-index: 1;
}

.day-header.today {
    background-color: #009ef7;
}

.day-name {
    font-size: 0.5rem;
    font-weight: 600;
    color: #7e8299;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.day-header.today .day-name {
    color: #fff;
}

.day-number {
    font-size: 1rem;
    font-weight: 700;
    color: #181c32;
    margin: 4px 0;
}

.day-header.today .day-number {
    color: #fff;
}

.day-number.today {
    background-color: #009ef7;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px auto;
}

.day-content {
    padding: 12px;
    overflow-y: auto;
    min-height: 450px;
}

.schedule-card {
    display: block;
}

.schedule-card {
    cursor: pointer;
}

.schedule-card:hover .card {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.time-info {
    color: #181c32;
}

/* Scrollbar styling */
.calendar-container::-webkit-scrollbar {
    height: 8px;
}

.calendar-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.calendar-container::-webkit-scrollbar-thumb {
    background: #c4c4c4;
    border-radius: 10px;
}

.calendar-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.day-content::-webkit-scrollbar {
    width: 4px;
}

.day-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.day-content::-webkit-scrollbar-thumb {
    background: #c4c4c4;
    border-radius: 10px;
}
