/* Suggested Notes - Three Column Layout for Bottom Row */

/* Three column layout container */
.suggested-note-bottom-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

/* Priority column - fixed width on left */
.suggested-note-bottom-row .tile-priority {
    flex: 0 0 auto;
    min-width: 26px;
    padding: 0.0625rem 0.25rem;
    border-radius: 0.25rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Note text - center column, takes available space */
.suggested-note-bottom-row .suggested-note-text {
    flex: 1 1 auto;
    font-size: 0.7rem !important;
    color: #d1d5db !important;
    line-height: 1.3 !important;
    padding: 0 !important;
    background: none !important;
    margin: 0 !important;
    font-weight: 400;
}

/* Timer column - fixed width on right */
.suggested-note-bottom-row .tile-timer {
    position: relative !important;
    flex: 0 0 auto;
    display: flex !important;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.65rem;
    color: #9ca3af;
    transition: color 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    bottom: auto !important;
    right: auto !important;
}

/* Remove absolute positioning overrides */
[data-section="suggested-actions"] .clean-tile.note .tile-timer {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
}

/* Ensure proper padding on the note tile */
[data-section="suggested-actions"] .clean-tile.note {
    padding-bottom: 0.75rem !important; /* Normal padding since timer is inline */
}

/* Priority colors remain the same */
.suggested-note-bottom-row .tile-priority.priority-high {
    background-color: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.suggested-note-bottom-row .tile-priority.priority-medium {
    background-color: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.suggested-note-bottom-row .tile-priority.priority-low {
    background-color: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Timer warning state */
.suggested-note-bottom-row .tile-timer.timer-warning {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.2);
    animation: pulse 1s infinite;
}