/* Custom Styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

/* Message View Styles */
#messageView {
    min-height: 500px;
}

.list-group-item {
    cursor: pointer;
    transition: background-color 0.2s;
}

.list-group-item:hover {
    background-color: var(--bs-secondary-bg);
}

.list-group-item.active {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.list-group-item.active .text-muted {
    color: rgba(255,255,255,0.8) !important;
}

/* Scrollbar styling for message list */
#emailList::-webkit-scrollbar {
    width: 6px;
}

#emailList::-webkit-scrollbar-track {
    background: transparent;
}

#emailList::-webkit-scrollbar-thumb {
    background-color: var(--bs-secondary);
    border-radius: 10px;
}

/* Dark mode specific adjustments */
[data-bs-theme="dark"] .bg-light {
    background-color: #2b3035 !important;
}

[data-bs-theme="dark"] #qrcode {
    background-color: white !important;
}
