/* Callouts Dropdown Layout */
.callouts-dropdown-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    width: 100%;
    padding: 1rem 0;
}

.callout-date-section {
    margin-bottom: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 60px;
    transition: max-height 0.3s ease;
}

.callout-date-section.expanded {
    max-height: none;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 2px;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.date-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #0f172a;
    border-bottom: 1px solid #334155;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.date-dropdown-header:hover {
    background: #1e293b;
}

.date-dropdown-header.expanded {
    background: #1e293b;
    border-bottom: 1px solid #475569;
}

.date-header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.callout-status-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.callout-status-badge {
    font-weight: 600;
    font-size: var(--admin-font-size) !important;
    min-width: 20px;
    text-align: center;
}

.callout-status-badge.out {
    color: #ef4444;
}

.callout-status-badge.late {
    color: #eab308;
}

.callout-status-badge.leave-early {
    color: #a855f7;
}

.callout-status-separator {
    color: #94a3b8;
    font-weight: 400;
}

.date-icon {
    font-size: var(--admin-font-size) !important;
}

.date-text {
    font-weight: 600;
    color: #e2e8f0;
    font-size: var(--admin-font-size) !important;
}

.callout-count {
    color: #94a3b8;
    font-size: var(--admin-font-size) !important;
    font-weight: 400;
}

.dropdown-arrow {
    color: #94a3b8;
    transition: transform 0.2s ease;
}

.arrow-icon {
    font-size: var(--admin-font-size) !important;
    transition: transform 0.2s ease;
}

.date-dropdown-content {
    padding: 0.75rem;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    flex: 1;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.callouts-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow: visible;
    flex: 1;
}

/* Callout Cards */
.callout-card {
    background: linear-gradient(145deg, #0f172a, #1e293b);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 2px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.2s ease;
    min-height: 120px;
}

.callout-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: linear-gradient(145deg, #1e293b, #334155);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.callout-card.selected {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.callout-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.callout-checkbox-container {
    flex-shrink: 0;
}

.callout-user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid #334155;
    flex-shrink: 0;
}

.user-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-details {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-weight: 600;
    color: #e2e8f0;
    font-size: var(--admin-font-size) !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-server {
    color: #94a3b8;
    font-size: var(--admin-font-size) !important;
    margin-top: 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.callout-status {
    flex-shrink: 0;
}

.callout-card-body {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: flex-start;
}

.callout-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.callout-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 60px;
}

.detail-label {
    color: #94a3b8;
    font-size: var(--admin-font-size) !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.detail-value {
    color: #e2e8f0;
    font-size: var(--admin-font-size) !important;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.callout-reason {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0;
    margin: 0;
    border: none;
}

.reason-label {
    color: #94a3b8;
    font-size: var(--admin-font-size) !important;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.25rem;
}

.reason-text {
    color: #e2e8f0;
    font-size: var(--admin-font-size) !important;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.callout-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    border: none;
}

