/* Custom CSS for Task Management System */

/* Global Styles */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Impersonation Notification */
.alert-warning.impersonation-alert {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffc107;
    color: #856404;
}

.impersonation-alert .btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    border: none;
    color: #212529;
    font-weight: 600;
    transition: all 0.3s ease;
}

.impersonation-alert .btn-warning:hover {
    background: linear-gradient(135deg, #e0a800 0%, #d39e00 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* Card Enhancements */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.card-header {
    border-bottom: 1px solid #e9ecef;
    background-color: #fff;
    border-radius: 10px 10px 0 0 !important;
}

/* Navigation Enhancements */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    background-color: #f8f9fa !important;
    border-bottom: 1px solid #dee2e6;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #495057 !important;
}

/* Improved Navigation Layout */
.navbar-nav .nav-link {
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    color: #495057 !important;
}

.navbar-nav .nav-link:hover {
    color: #212529 !important;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
}

.nav-text {
    margin-left: 0.25rem;
}

/* Responsive Navigation */
@media (max-width: 991.98px) {
    .nav-text {
        display: none;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        color: #495057 !important;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(0, 0, 0, 0.05);
        border-radius: 0;
        color: #212529 !important;
    }
}

/* Dropdown Enhancements */
.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    transition: all 0.2s ease-in-out;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    transform: translateX(2px);
}

.dropdown-item i {
    width: 1rem;
    margin-right: 0.5rem;
    text-align: center;
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    line-height: 1;
    text-align: center;
    padding: 0;
    margin: 0;
    min-width: 20px;
    min-height: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0;
    word-spacing: 0;
}

.notification-icon-container {
    position: relative;
    display: inline-block;
}

/* Button Enhancements */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Professional Table Design */
.table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: none;
    background: white;
}

.table thead th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    padding: 1rem 0.75rem;
    position: relative;
}

.table thead th:first-child {
    border-top-left-radius: 12px;
}

.table thead th:last-child {
    border-top-right-radius: 12px;
}

.table tbody tr {
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid #f1f3f4;
}

.table tbody tr:hover {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 4px 0;
}

.table tbody tr:last-child {
    border-bottom: none;
}

.table tbody td {
    padding: 1rem 0.75rem;
    vertical-align: middle;
    border: none;
    font-size: 0.9rem;
}

/* Table Row Alternating Colors */
.table tbody tr:nth-child(even) {
    background-color: #fafbfc;
}

.table tbody tr:nth-child(even):hover {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

/* Task Title Column Styling */
.table tbody td:first-child {
    font-weight: 600;
    color: #2c3e50;
}

/* Priority and Status Badge Enhancements */
.table .badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Priority Badge Colors */
.badge.bg-danger {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%) !important;
    color: white;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #ffa726 0%, #ff9800 100%) !important;
    color: white;
}

.badge.bg-info {
    background: linear-gradient(135deg, #42a5f5 0%, #2196f3 100%) !important;
    color: white;
}

.badge.bg-secondary {
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%) !important;
    color: white;
}

.badge.bg-success {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%) !important;
    color: white;
}

.badge.bg-primary {
    background: linear-gradient(135deg, #5c6bc0 0%, #3f51b5 100%) !important;
    color: white;
}

/* Action Buttons Styling */
.table .btn-group .btn {
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table .btn-group .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.table .btn-outline-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.table .btn-outline-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    color: white;
}

.table .btn-outline-success {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    border: none;
}

.table .btn-outline-success:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    color: white;
}

.table .btn-outline-danger {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
    border: none;
}

.table .btn-outline-danger:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    color: white;
}

/* Developer Name Styling */
.table tbody td:nth-child(4) {
    font-weight: 500;
    color: #34495e;
}

/* Date Styling */
.table tbody td:nth-child(5),
.table tbody td:nth-child(6) {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 500;
}

/* Priority Indicator Enhancement */
.priority-indicator {
    width: 6px;
    height: 24px;
    border-radius: 3px;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Table Container Enhancement */
.table-responsive {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: white;
}

/* Empty State Styling */
.table tbody tr:only-child td {
    padding: 3rem 1rem;
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
}

/* Badge Enhancements */
.badge {
    font-size: 0.75rem;
    padding: 0.5em 0.75em;
    border-radius: 6px;
}

/* Form Enhancements */
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: border-color 0.2s ease-in-out;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.input-group-text {
    border-radius: 8px 0 0 8px;
    border: 2px solid #e9ecef;
    background-color: #f8f9fa;
}

/* Alert Enhancements */
.alert {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Comment System Styles */
.comment {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #007bff;
}

.comment-reply {
    margin-left: 30px;
    border-left-color: #6c757d;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 600;
    color: #495057;
}

.comment-time {
    font-size: 0.875rem;
    color: #6c757d;
}

.comment-content {
    color: #212529;
    line-height: 1.5;
}

/* Timer Styles */
.timer-display {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 15px 0;
}

.timer-running {
    background-color: #d4edda;
    color: #155724;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Status Badge Colors */
.badge.bg-urgent {
    background-color: #dc3545 !important;
}

.badge.bg-high {
    background-color: #fd7e14 !important;
}

.badge.bg-medium {
    background-color: #17a2b8 !important;
}

.badge.bg-low {
    background-color: #6c757d !important;
}

/* Priority Indicators */
.priority-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.priority-urgent { background-color: #dc3545; }
.priority-high { background-color: #fd7e14; }
.priority-medium { background-color: #17a2b8; }
.priority-low { background-color: #6c757d; }

/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-body {
        padding: 1rem;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
    
    .btn {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Dark Mode Support */
/* Force Light Theme - Override System Dark Mode */
body {
    background-color: #f8f9fa !important;
    color: #212529 !important;
}

.card {
    background-color: #ffffff !important;
    color: #212529 !important;
}

.card-header {
    background-color: #ffffff !important;
    color: #212529 !important;
}

.table {
    color: #212529 !important;
}

.table thead th {
    background-color: #f8f9fa !important;
    color: #212529 !important;
}

.table tbody tr:hover {
    background-color: #e9ecef !important;
}

/* Additional Light Theme Overrides */
.navbar {
    background-color: #f8f9fa !important;
    color: #495057 !important;
    border-bottom: 1px solid #dee2e6 !important;
}

.dropdown-menu {
    background-color: #ffffff !important;
    color: #212529 !important;
}

.dropdown-item {
    color: #212529 !important;
}

.dropdown-item:hover {
    background-color: #f8f9fa !important;
    color: #212529 !important;
}

.form-control {
    background-color: #ffffff !important;
    color: #212529 !important;
    border-color: #ced4da !important;
}

.form-control:focus {
    background-color: #ffffff !important;
    color: #212529 !important;
    border-color: #80bdff !important;
}

.modal-content {
    background-color: #ffffff !important;
    color: #212529 !important;
}

.modal-header {
    background-color: #f8f9fa !important;
    color: #212529 !important;
}

.alert {
    background-color: #ffffff !important;
    color: #212529 !important;
}

/* Override any Bootstrap dark mode classes */
.bg-dark {
    background-color: #343a40 !important;
}

.text-dark {
    color: #212529 !important;
}

.text-muted {
    color: #6c757d !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Utility Classes */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cursor-pointer {
    cursor: pointer;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
} 

/* ============================================================================
   NOTIFICATION SYSTEM STYLES
   ============================================================================ */



/* Notification Dropdown */
.notification-dropdown {
    max-height: 400px;
    overflow-y: auto;
    min-width: 350px;
    max-width: 500px;
    width: auto;
}

.notification-item {
    padding: 12px 18px;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: background-color 0.2s;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.notification-item:hover {
    background-color: #f8f9fa;
}

.notification-item.unread {
    background-color: #e3f2fd;
    border-left: 3px solid #2196f3;
}

.notification-item.unread:hover {
    background-color: #bbdefb;
}

.notification-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.notification-message {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.notification-time {
    font-size: 11px;
    color: #999;
}

/* Notification Popup */
.notification-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 350px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    animation: slideInRight 0.3s ease-out;
    max-width: 90vw;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    border-radius: 8px 8px 0 0;
}

.notification-popup-header strong {
    font-size: 14px;
    color: #333;
}

.notification-popup-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-popup-close:hover {
    color: #333;
}

.notification-popup-body {
    padding: 12px 15px;
    font-size: 13px;
    line-height: 1.4;
    color: #666;
}

.notification-popup-footer {
    padding: 8px 15px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 8px 8px;
}

.notification-popup-footer small {
    color: #999;
    font-size: 11px;
}

/* Notification Icon Container */
.notification-icon-container {
    position: relative;
    display: inline-block;
    padding: 0.5rem;
}

.notification-icon-container .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.notification-icon-container .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .notification-popup {
        width: calc(100vw - 40px);
        right: 20px;
        left: 20px;
    }
    
    .notification-dropdown {
        min-width: 280px;
        max-width: calc(100vw - 40px);
        width: auto;
    }
}

/* Notification Types */
.notification-item[data-type="task_assigned"] {
    border-left-color: #28a745;
}

.notification-item[data-type="task_status_change"] {
    border-left-color: #ffc107;
}

.notification-item[data-type="task_rejected"] {
    border-left-color: #dc3545;
}

.notification-item[data-type="bug_created"] {
    border-left-color: #17a2b8;
}

.notification-item[data-type="bug_assigned"] {
    border-left-color: #6f42c1;
}

/* Empty State */
.notification-dropdown .text-muted {
    padding: 20px;
    text-align: center;
    color: #999;
    font-style: italic;
}

/* Modern Action Buttons Design */
.action-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.action-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease-in-out;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.action-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* View Button */
.action-btn-view {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

.action-btn-view:hover {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

/* Start Timer Button */
.action-btn-start {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
}

.action-btn-start:hover {
    background: linear-gradient(135deg, #45a049 0%, #388e3c 100%);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Stop Timer Button */
.action-btn-stop {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
}

.action-btn-stop:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

/* Review Button */
.action-btn-review {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.action-btn-review:hover {
    background: linear-gradient(135deg, #f57c00 0%, #ef6c00 100%);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

/* Assign Button */
.action-btn-assign {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
}

.action-btn-assign:hover {
    background: linear-gradient(135deg, #7b1fa2 0%, #6a1b9a 100%);
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

/* Edit Button */
.action-btn-edit {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

.action-btn-edit:hover {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

/* Activate Button */
.action-btn-activate {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
}

.action-btn-activate:hover {
    background: linear-gradient(135deg, #45a049 0%, #388e3c 100%);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Deactivate Button */
.action-btn-deactivate {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.action-btn-deactivate:hover {
    background: linear-gradient(135deg, #f57c00 0%, #ef6c00 100%);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

/* Reset Password Button */
.action-btn-reset {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
}

.action-btn-reset:hover {
    background: linear-gradient(135deg, #7b1fa2 0%, #6a1b9a 100%);
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

/* Delete Button */
.action-btn-delete {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
}

.action-btn-delete:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

/* Tooltip Enhancement */
.action-btn[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 0.5rem;
}

.action-btn[title]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.8);
    margin-bottom: -5px;
    z-index: 1000;
}

/* Animation for button press */
@keyframes buttonPress {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.action-btn:active {
    animation: buttonPress 0.1s ease-in-out;
}

/* Enhanced table styling to complement the new buttons */
.table tbody tr:hover .action-buttons {
    opacity: 1;
}

.action-buttons {
    opacity: 0.8;
    transition: opacity 0.3s ease-in-out;
}

/* Focus states for accessibility */
.action-btn:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Disabled state */
.action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Responsive Design for Action Buttons */
@media (max-width: 768px) {
    .action-buttons {
        gap: 0.25rem;
    }
    
    .action-btn {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
} 