/* =============================================
   Quick Actions Header - View All Link
   เพิ่มต่อท้าย style.css หรือ modal-fix.css
   ============================================= */

/* Quick Actions Header with Link */
.quick-actions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.quick-actions-header .quick-actions-title {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

/* View All Link */
.section-link {
    color: #0d9488;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.section-link:hover {
    color: #0f766e;
    transform: translateX(2px);
}

.section-link:active {
    transform: translateX(0);
}

/* Arrow animation on hover */
.section-link::after {
    content: '';
    display: inline-block;
    transition: transform 0.2s ease;
}

.section-link:hover::after {
    transform: translateX(3px);
}
