/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
}

/* Modern Glass Navbar */
.nav-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Table Card Styling */
.table-container {
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

/* Typography for Dates */
.date-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

/* Row Hover Interaction */
tr.job-row {
    transition: all 0.2s ease;
}

tr.job-row:hover {
    background-color: #f1f5f9;
    transform: scale(1.002);
    cursor: pointer;
}

/* Animated Menu Underline */
.menu-link {
    position: relative;
    transition: color 0.3s ease;
}

.menu-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #059669;
    transition: width 0.3s;
}

.menu-link:hover::after {
    width: 100%;
}

.menu-link:hover {
    color: #059669;
}