/* /mobile/styles/callouts.css */
/* Callout indicators and styling */

.callout-indicators {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-top: 2px;
}

.callout-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 1;
}

/* Callout status colors matching main site */
.callout-dot.status-in { background: var(--blue-primary); }
.callout-dot.status-late { background: var(--status-late-primary); }
.callout-dot.status-out { background: var(--status-out-primary); }
.callout-dot.status-leave-early { background: #8b5cf6; } /* Purple for leave early */
.callout-dot.status-info { background: var(--blue-accent); }

.callout-bar {
    height: 3px;
    border-radius: 1.5px;
    margin: 0 2px;
}

/* Callout status colors matching main site */
.callout-bar.status-in { background: var(--blue-primary); }
.callout-bar.status-late { background: var(--status-late-primary); }
.callout-bar.status-out { background: var(--status-out-primary); }
.callout-bar.status-info { background: var(--blue-accent); }

.callout-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--status-out-primary);
    color: white;
    border-radius: 8px;
    padding: 1px 4px;
    font-size: 9px;
    font-weight: 600;
    min-width: 14px;
    text-align: center;
    line-height: 12px;
}

.callout-preview {
    font-size: 8px;
    color: var(--mobile-text-muted);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: auto;
    padding: 0 1px;
}

/* Responsive adjustments */
@media (max-width: 390px) {
    .callout-preview {
        font-size: 7px;
    }
    
    .callout-dot {
        width: 14px;
        height: 14px;
        font-size: 9px;
    }
}
