/* Solution Reply Styles */
.solution-reply {
    border-bottom: 1px solid var(--border);
    color: var(--primary);
}

/* Adviser avatar circle */
.solution-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2ecc71, #1a9e55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

/* Solution badge inline with author name */
.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

/* Accepted indicator icon in header */
.solution-accepted-indicator {
    color: #2ecc71;
    font-size: 14px;
}

/* Description text block */
.solution-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--primary);
    margin-bottom: 12px;
    white-space: pre-wrap;
}

/* Actions row */
.solution-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px;
}

/* Google Calendar link */
.calendar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--secondary);
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.calendar-link:hover {
    border-color: #2ecc71;
    color: #2ecc71;
    text-decoration: none;
}

/* Accepted badge */
.solution-accepted-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2ecc71;
    font-size: 13px;
    font-weight: 600;
}

/* Accept Solution button */
.accept-solution-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--border);
    padding: 5px 14px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.accept-solution-btn:hover {
    border-color: #2ecc71;
    color: #2ecc71;
}

/* Notification Styles */

/* Notification Styles */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 2000;
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 4px;
    font-weight: 500;
}

.notification-error {
    background: #ef4444;
    color: white;
}

.notification-info {
    background: #3b82f6;
    color: white;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}/* Solve Button States */

/* Solve Button States */
.thread__action[data-action="provide-solution"].has-solution {
    background: #10b981;
    color: white;
}

.thread__action[data-action="provide-solution"].has-solution:hover {
    background: #059669;
}
