.cabinet-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(55, 138, 221, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.cabinet-task-item {
    background: #F5F5F5;
    border: 1px solid #D3D1C7;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cabinet-status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #639922;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.cabinet-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #E8E8E8;
    border-top-color: #378ADD;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
