/* Custom Styles for HRMS Task Management System */

/* ============================================
   SIDEBAR LAYOUT
   ============================================ */

/* Sidebar Container */
.sidebar-container {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 16rem;
    background: linear-gradient(to bottom, #1e3a8a, #1e40af, #1e3a8a);
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 40;
    transition: all 0.3s ease-in-out;
    overflow-y: auto;
}

.sidebar-container.collapsed {
    width: 5rem;
}

/* Sidebar Header */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 1.25rem;
    border-bottom: 1px solid #3730a3;
}

.logo-icon {
    font-size: 1.875rem;
    color: #a5b4fc;
}

.sidebar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 0.75rem;
    transition: opacity 0.3s;
}

.sidebar-container.collapsed .sidebar-brand {
    opacity: 0;
    display: none;
}

.sidebar-toggle-btn {
    color: #a5b4fc;
    transition: color 0.2s;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.sidebar-toggle-btn:hover {
    color: white;
    background-color: #3730a3;
}

/* User Profile Card */
.sidebar-user-card {
    padding: 1rem;
    border-bottom: 1px solid #3730a3;
    background-color: rgba(30, 58, 138, 0.5);
}

.user-avatar {
    font-size: 2.25rem;
    text-align: center;
    color: #a5b4fc;
    margin-bottom: 0.5rem;
}

.sidebar-container.collapsed .user-avatar {
    font-size: 1.875rem;
    margin-bottom: 0;
}

.user-info {
    text-align: center;
    transition: all 0.3s;
}

.sidebar-container.collapsed .user-info {
    opacity: 0;
    display: none;
}

.user-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.user-role {
    font-size: 0.75rem;
    color: #a5b4fc;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 0.25rem;
}

.user-code {
    font-size: 0.75rem;
    color: #818cf8;
    margin-top: 0.25rem;
}

/* Navigation */
.sidebar-nav {
    padding: 0.5rem 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-section {
    margin-bottom: 1.5rem;
}

.nav-section-title {
    font-size: 0.75rem;
    font-weight: bold;
    color: #818cf8;
    padding: 0 1rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.sidebar-container.collapsed .nav-section-title {
    opacity: 0;
    display: none;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
}

.nav-item:hover {
    background-color: #3730a3;
    transform: translateX(0.25rem);
}

.nav-item.active {
    background: linear-gradient(to right, #4f46e5, #9333ea);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-icon {
    font-size: 1.25rem;
    width: 1.5rem;
    text-align: center;
}

.nav-text {
    margin-left: 1rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.sidebar-container.collapsed .nav-text {
    opacity: 0;
    display: none;
}

/* Tooltip for collapsed sidebar */
.sidebar-container.collapsed .nav-item:hover::after {
    content: attr(title);
    position: absolute;
    left: 100%;
    margin-left: 0.5rem;
    padding: 0.75rem;
    background-color: #111827;
    color: white;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    white-space: nowrap;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.nav-item-danger:hover {
    background-color: #dc2626;
}

/* Sidebar Footer */
.sidebar-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    border-top: 1px solid #3730a3;
    text-align: center;
    background-color: rgba(30, 58, 138, 0.5);
}

.sidebar-container.collapsed .sidebar-footer {
    opacity: 0;
}

/* Main Content Wrapper */
.main-content-wrapper {
    margin-left: 16rem;
    transition: all 0.3s ease-in-out;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f9fafb;
}

.main-content-wrapper.expanded {
    margin-left: 5rem;
}

/* Top Header */
.top-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-btn {
    color: #4b5563;
    transition: color 0.2s;
    font-size: 1.25rem;
}

.mobile-menu-btn:hover {
    color: #4f46e5;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon-btn {
    position: relative;
    padding: 0.5rem;
    color: #4b5563;
    transition: all 0.2s;
    border-radius: 0.5rem;
}

.header-icon-btn:hover {
    color: #4f46e5;
    background-color: #eef2ff;
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ef4444;
    color: white;
    font-size: 0.75rem;
    border-radius: 9999px;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.btn-header-action {
    background: linear-gradient(to right, #4f46e5, #9333ea);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-header-action:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Page Content */
.page-content {
    flex: 1;
    padding: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar-container {
        transform: translateX(-100%);
    }

    .sidebar-container:not(.collapsed) {
        transform: translateX(0);
    }

    .main-content-wrapper {
        margin-left: 0;
    }

    .main-content-wrapper.expanded {
        margin-left: 0;
    }
}

/* Standard Table Styling */
.standard-table {
    width: 100%;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    overflow-x: auto;
    min-width: 100%;
}

.standard-table table {
    width: 100%;
    min-width: 1200px;
    table-layout: fixed;
}

.standard-table thead {
    background: linear-gradient(to right, #f8fafc, #e2e8f0);
    color: #374151;
    border-bottom: 2px solid #e5e7eb;
}

.standard-table thead th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Column Width Management */
.standard-table thead th:nth-child(1),
.standard-table tbody td:nth-child(1) {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
}

.standard-table thead th:nth-child(2),
.standard-table tbody td:nth-child(2) {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
}

.standard-table thead th:nth-child(3),
.standard-table tbody td:nth-child(3) {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
}

.standard-table thead th:nth-child(4),
.standard-table tbody td:nth-child(4) {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
}

.standard-table thead th:nth-child(5),
.standard-table tbody td:nth-child(5) {
    width: 160px;
    min-width: 160px;
    max-width: 160px;
}

.standard-table thead th:nth-child(6),
.standard-table tbody td:nth-child(6) {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
}

.standard-table thead th:nth-child(7),
.standard-table tbody td:nth-child(7) {
    width: 150px;
    min-width: 150px;
    max-width: 150px;
}

.standard-table thead th:nth-child(8),
.standard-table tbody td:nth-child(8) {
    width: 130px;
    min-width: 130px;
    max-width: 130px;
}

.standard-table tbody {
    border-top: 1px solid #e5e7eb;
    background-color: white;
}

.standard-table tbody tr {
    transition: background-color 0.15s;
}

.standard-table tbody tr:hover {
    background-color: #f9fafb;
}

.standard-table tbody td {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    color: #111827;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: top;
    height: 60px;
}

/* Allow time and status columns to show full content */
.standard-table tbody td:nth-child(5),
.standard-table tbody td:nth-child(6),
.standard-table tbody td:nth-child(7) {
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
    height: auto;
    min-height: 60px;
}

/* Ensure status badges display properly */
.standard-table tbody td:nth-child(7) .inline-flex {
    white-space: nowrap;
    display: inline-flex;
    max-width: 100%;
}

/* Time column specific improvements */
.standard-table tbody td:nth-child(5) {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    overflow: visible;
}

/* Task column - single line with ellipsis */
.standard-table tbody td:nth-child(4) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Project column - single line with ellipsis */
.standard-table tbody td:nth-child(2) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* User column - single line with ellipsis */
.standard-table tbody td:nth-child(3) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Projects Table Specific Styling */
.projects-table thead th:nth-child(1),
.projects-table tbody td:nth-child(1) {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
}

.projects-table thead th:nth-child(2),
.projects-table tbody td:nth-child(2) {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
}

.projects-table thead th:nth-child(3),
.projects-table tbody td:nth-child(3) {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
}

.projects-table thead th:nth-child(4),
.projects-table tbody td:nth-child(4) {
    width: 150px;
    min-width: 150px;
    max-width: 150px;
}

.projects-table thead th:nth-child(5),
.projects-table tbody td:nth-child(5) {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
}

.projects-table thead th:nth-child(6),
.projects-table tbody td:nth-child(6) {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
}

/* Project name text within the flex container */
.projects-table tbody td:nth-child(1) .ml-4 {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.projects-table tbody td:nth-child(1) .ml-4 .text-sm {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Badge Styles */
.badge {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    display: inline-block;
}

.badge-success {
    background-color: #dcfce7;
    color: #166534;
}

.badge-warning {
    background-color: #fef3c7;
    color: #92400e;
}

.badge-danger {
    background-color: #fee2e2;
    color: #991b1b;
}

.badge-info {
    background-color: #dbeafe;
    color: #1e40af;
}

.badge-primary {
    background-color: #e0e7ff;
    color: #3730a3;
}

.badge-purple {
    background-color: #f3e8ff;
    color: #6b21a8;
}

/* Button Styles */
.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: #4f46e5;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #4338ca;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-success {
    background-color: #059669;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-success:hover {
    background-color: #047857;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-danger {
    background-color: #dc2626;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-danger:hover {
    background-color: #b91c1c;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-warning {
    background-color: #d97706;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-warning:hover {
    background-color: #b45309;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: #4b5563;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: #374151;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    border: 2px solid #d1d5db;
    color: #374151;
}

.btn-outline:hover {
    background-color: #f9fafb;
}

/* Action Button Styles */
.action-btn {
    padding: 0.375rem;
    border-radius: 0.375rem;
    transition: all 0.2s;
    margin: 0 0.125rem;
    min-width: 1.75rem;
    height: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.action-btn-view {
    color: #2563eb;
}

.action-btn-view:hover {
    background-color: #eff6ff;
    color: #1d4ed8;
}

.action-btn-edit {
    color: #4f46e5;
}

.action-btn-edit:hover {
    background-color: #eef2ff;
    color: #4338ca;
}

.action-btn-delete {
    color: #dc2626;
}

.action-btn-delete:hover {
    background-color: #fef2f2;
    color: #b91c1c;
}

.action-btn-toggle {
    color: #d97706;
}

.action-btn-toggle:hover {
    background-color: #fffbeb;
    color: #b45309;
}

/* Action buttons container spacing */
.standard-table tbody td:nth-child(8) .flex {
    gap: 0.25rem;
    justify-content: flex-start;
    align-items: center;
    padding: 0.125rem 0;
}

/* Ensure action buttons don't get cut off */
.standard-table tbody td:nth-child(8) {
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
    overflow: visible;
}

/* Card Styles */
.card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border: 1px solid #f3f4f6;
}

.card-gradient {
    background: linear-gradient(to bottom right, white, #f9fafb);
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
}

.card-header {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    display: flex;
    align-items: center;
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    outline: none;
}

.form-input:focus {
    ring: 2px solid #4f46e5;
    border-color: transparent;
}

.form-select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    outline: none;
}

.form-select:focus {
    ring: 2px solid #4f46e5;
    border-color: transparent;
}

.form-textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    outline: none;
}

.form-textarea:focus {
    ring: 2px solid #4f46e5;
    border-color: transparent;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-container {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 32rem;
    width: 100%;
    margin: 1rem;
    max-height: 100vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
}

.modal-close {
    color: #6b7280;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #374151;
}

/* Loading Spinner */
.spinner {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.875rem;
    color: #4f46e5;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Empty State */
.empty-state {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    margin: 24px;
    overflow-x: auto;
}

.empty-state-table {
    width: 100%;
    min-width: 1200px;
    table-layout: fixed;
}

.empty-state-header {
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.empty-state-header th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
}

.empty-state-row {
    border-bottom: 1px solid #e5e7eb;
}

.empty-state-body {
    background-color: white;
}

.empty-state-cell {
    padding: 3rem 1.5rem;
    text-align: center;
    color: #6b7280;
    font-size: 1.125rem;
    font-weight: 500;
}

/* Stats Card */
.stats-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: all 0.3s;
    border: 1px solid #f3f4f6;
}

.stats-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #e0e7ff;
    transform: translateY(-0.25rem);
}

.stats-card-gradient {
    background: linear-gradient(to bottom right, white, #eef2ff);
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: all 0.3s;
    border: 1px solid #e0e7ff;
}

.stats-icon-container {
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.stats-label {
    color: #6b7280;
    font-size: 0.875rem;
}

.stats-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
}

/* Filter Section */
.filter-section {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.pagination-btn:hover {
    background-color: #f9fafb;
}

.pagination-btn-active {
    background-color: #4f46e5;
    color: white;
    border-color: #4f46e5;
}

.pagination-btn-active:hover {
    background-color: #4338ca;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: white;
    z-index: 50;
    animation: fade-in 0.3s ease-out;
}

.toast-success {
    background-color: #10b981;
}

.toast-error {
    background-color: #ef4444;
}

.toast-warning {
    background-color: #f59e0b;
}

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

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.3s ease-out;
}

/* Responsive Table */
@media (max-width: 768px) {
    .standard-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .standard-table table {
        min-width: 100%;
        min-width: 1200px;
    }

    /* Adjust column widths for mobile */
    .standard-table thead th:nth-child(1),
    .standard-table tbody td:nth-child(1) {
        width: 100px;
        min-width: 100px;
        max-width: 100px;
    }

    .standard-table thead th:nth-child(2),
    .standard-table tbody td:nth-child(2) {
        width: 180px;
        min-width: 180px;
        max-width: 180px;
    }

    .standard-table thead th:nth-child(3),
    .standard-table tbody td:nth-child(3) {
        width: 160px;
        min-width: 160px;
        max-width: 160px;
    }

    .standard-table thead th:nth-child(4),
    .standard-table tbody td:nth-child(4) {
        width: 200px;
        min-width: 200px;
        max-width: 200px;
    }

    .standard-table thead th:nth-child(5),
    .standard-table tbody td:nth-child(5) {
        width: 140px;
        min-width: 140px;
        max-width: 140px;
    }

    .standard-table thead th:nth-child(6),
    .standard-table tbody td:nth-child(6) {
        width: 110px;
        min-width: 110px;
        max-width: 110px;
    }

    .standard-table thead th:nth-child(7),
    .standard-table tbody td:nth-child(7) {
        width: 130px;
        min-width: 130px;
        max-width: 130px;
    }

    .standard-table thead th:nth-child(8),
    .standard-table tbody td:nth-child(8) {
        width: 120px;
        min-width: 120px;
        max-width: 120px;
    }

    /* Projects Table Mobile Responsive */
    .projects-table thead th:nth-child(1),
    .projects-table tbody td:nth-child(1) {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
    }

    .projects-table thead th:nth-child(2),
    .projects-table tbody td:nth-child(2) {
        width: 100px;
        min-width: 100px;
        max-width: 100px;
    }

    .projects-table thead th:nth-child(3),
    .projects-table tbody td:nth-child(3) {
        width: 100px;
        min-width: 100px;
        max-width: 100px;
    }

    .projects-table thead th:nth-child(4),
    .projects-table tbody td:nth-child(4) {
        width: 120px;
        min-width: 120px;
        max-width: 120px;
    }

    .projects-table thead th:nth-child(5),
    .projects-table tbody td:nth-child(5) {
        width: 90px;
        min-width: 90px;
        max-width: 90px;
    }

    .projects-table thead th:nth-child(6),
    .projects-table tbody td:nth-child(6) {
        width: 100px;
        min-width: 100px;
        max-width: 100px;
    }
}

/* Utility Classes */
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hover-scale {
    transition: transform 0.2s;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.shadow-custom {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}