/* Tab Icon Color Matching - Make icons harmonize with their backgrounds */

/* Question icon - deeper blue to match blue background */
.clean-tile.question .tile-icon i {
    color: #3b82f6 !important; /* Stronger blue */
}

/* Task icon - match the text color */
.clean-tile.task .tile-icon i {
    color: #a78bfa !important; /* Same purple as text */
}

/* Note icon - amber/orange to match yellow background */
.clean-tile.note .note-pin-icon {
    color: #f59e0b !important; /* Amber/orange instead of bright yellow */
}

/* Type labels - also adjust for better contrast */
.clean-tile.question .tile-type {
    color: #3b82f6 !important; /* Match icon color */
}

.clean-tile.task .tile-type {
    color: #a78bfa !important; /* Updated to match new purple color scale */
}

/* Hover states - slightly brighter on hover */
.clean-tile.question:hover .tile-icon i,
.clean-tile.question:hover .tile-type {
    color: #60a5fa !important;
}

.clean-tile.task:hover .tile-icon i,
.clean-tile.task:hover .tile-type {
    color: #c4b5fd !important; /* Lighter purple on hover */
}

.clean-tile.note:hover .note-pin-icon {
    color: #fbbf24 !important;
}

/* Additional icon adjustments for better visibility */
.clean-tile .tile-icon i {
    font-weight: 600; /* Slightly bolder icons */
}

/* Note source icons - also adjust colors for consistency */
.note-source-icon {
    opacity: 0.8 !important; /* Slightly more visible */
}

.note-source-icon.transcript { 
    color: #3b82f6 !important; /* Match question blue */
}

.note-source-icon.map { 
    color: #dc2626 !important; /* Deeper red */
}

.note-source-icon.entities { 
    color: #9333ea !important; /* Match task purple */
}

.note-source-icon.chat { 
    color: #059669 !important; /* Deeper green */
}

.note-source-icon.files { 
    color: #d97706 !important; /* Amber/brown */
}