:root {
    --sl-dark-blue: #001f3f; /* Deep blue, close to original logo blue */
    --sl-primary-blue: #004080; /* Slightly lighter for main elements */
    --sl-accent-blue: #007bff; /* Standard Bootstrap blue for accents */
    --sl-light-gray: #f8f9fa; /* Light gray background for sections */
    --sl-text-color: #333;
    --sl-heading-color: #0a192f;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--sl-text-color);
    background-color: #f4f7f6;
    /* Tambahkan padding-top ini untuk fixed header */
    padding-top: 70px; /* Sesuaikan nilai ini jika navbar Anda lebih tinggi */
}

/* Untuk halaman login yang bodynya terpusat, padding-top tidak diperlukan di sini */
body.login-page-body {
    padding-top: 0;
}

/* Navbar */
.custom-navbar {
    background-color: var(--sl-dark-blue);
    border-bottom: 3px solid var(--sl-primary-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.navbar-logo {
    height: 40px; /* Adjust as needed */
    width: auto;
}
.custom-navbar .navbar-brand {
    font-weight: 700;
    color: white;
}
.custom-navbar .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: color 0.3s ease;
}
.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: white;
}
.custom-navbar .btn-outline-light {
    border-color: white;
    color: white;
    transition: all 0.3s ease;
}
.custom-navbar .btn-outline-light:hover {
    background-color: white;
    color: var(--sl-primary-blue);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 31, 63, 0.85), rgba(0, 64, 128, 0.85)), url('https://via.placeholder.com/1500x800/001f3f/ffffff?text=Kapal+Pengiriman') no-repeat center center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}
.hero-section .display-4 {
    font-weight: 700;
    letter-spacing: 1px;
}
.hero-section .lead {
    font-size: 1.25rem;
}
.hero-section .btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: var(--sl-dark-blue);
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.hero-section .btn-warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Section Titles */
.section-title {
    font-weight: 700;
    color: var(--sl-heading-color);
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: 4px;
    width: 80px;
    background-color: var(--sl-primary-blue);
    border-radius: 2px;
}
#about .section-title::after {
    left: 0;
    transform: translateX(0);
}

/* Process Cards */
.process-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.process-card .icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--sl-primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 0 0 8px rgba(0, 64, 128, 0.2);
}
.process-card .card-title {
    font-weight: 600;
    color: var(--sl-dark-blue);
    margin-bottom: 10px;
}
.process-card .card-text {
    color: #666;
}

/* Footer */
footer {
    background-color: var(--sl-dark-blue) !important;
    color: white;
    font-size: 0.9rem;
}

/* Login Page Styling */
.login-page-body {
    background: linear-gradient(to right, var(--sl-dark-blue), var(--sl-primary-blue));
}
.login-card {
    max-width: 480px;
    width: 100%;
    border-radius: 20px;
    background-color: white;
    padding: 30px;
}
.login-logo {
    height: 80px;
    width: auto;
}
.login-card .nav-pills .nav-link {
    color: var(--sl-primary-blue);
    border: 1px solid var(--sl-primary-blue);
    margin: 0 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
}
.login-card .nav-pills .nav-link.active {
    background-color: var(--sl-primary-blue);
    color: white;
    border-color: var(--sl-primary-blue);
}
.login-card .btn-primary {
    background-color: var(--sl-primary-blue);
    border-color: var(--sl-primary-blue);
    transition: background-color 0.3s ease;
    padding: 10px 20px;
    font-size: 1.1rem;
}
.login-card .btn-primary:hover {
    background-color: var(--sl-dark-blue);
    border-color: var(--sl-dark-blue);
}
.login-card .btn-outline-primary {
    color: var(--sl-primary-blue);
    border-color: var(--sl-primary-blue);
}
.login-card .btn-outline-primary:hover {
    background-color: var(--sl-primary-blue);
    color: white;
}

/* Dashboard Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    padding: 48px 0 0; /* Height of navbar */
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
    background-color: #f8f9fa;
    z-index: 100;

    /* Added for fixed mini-sidebar functionality */
    width: 70px; /* Mini-sidebar width for icons only */
    transition: width 0.3s ease; /* Smooth transition for width change */
    overflow-x: hidden; /* Hide horizontal scrollbar */
}
/* Original media query for sidebar */
@media (max-width: 767.98px) {
    .sidebar {
        top: 56px; /* Height of navbar on mobile */
    }
}
.sidebar .nav-link {
    font-weight: 500;
    color: #333;
    /* Adjusted for fixed mini-sidebar functionality */
    padding: 0.75rem 0.5rem; /* Reduced padding for compact icons */
    text-align: center; /* Center icons */
}
/* Added media query for full sidebar on larger screens */
@media (min-width: 768px) { /* Medium devices and up */
    .sidebar {
        width: 250px; /* Full sidebar width */
    }
    .sidebar .nav-link {
        padding: 0.75rem 1rem; /* Restore original padding */
        text-align: left; /* Align text left */
    }
}

.sidebar .nav-link.active {
    color: var(--sl-primary-blue);
    background-color: #e0efff;
    border-left: 4px solid var(--sl-primary-blue);
}
.sidebar .nav-link:hover {
    color: var(--sl-dark-blue);
    background-color: #e9ecef;
}

/* Dashboard Main Content */
main {
    padding-top: 1rem;
}
/* Added for fixed mini-sidebar functionality */
main.col-md-9 { /* Use the specific main selector */
    margin-left: 70px; /* Offset for mini-sidebar */
    transition: margin-left 0.3s ease;
}
@media (min-width: 768px) {
    main.col-md-9 {
        margin-left: 250px; /* Offset for full sidebar */
    }
}

/* Timeline for Recruitment Status */
.timeline {
    position: relative;
    padding: 20px 0 20px 50px;
    list-style: none;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    margin-bottom: 30px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-icon {
    position: absolute;
    left: -35px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--sl-primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 5px rgba(0, 64, 128, 0.3);
    font-size: 1.2rem;
}
.timeline-item.active .timeline-icon {
    background-color: var(--sl-dark-blue);
    box-shadow: 0 0 0 5px rgba(0, 31, 63, 0.4);
}
.timeline-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 5px solid var(--sl-primary-blue);
}
.timeline-item.active .timeline-content {
    border-left-color: var(--sl-dark-blue);
}
.timeline-content h5 {
    font-weight: 600;
    color: var(--sl-primary-blue);
    margin-bottom: 5px;
}
.timeline-item.active .timeline-content h5 {
    color: var(--sl-dark-blue);
}

/* Job Vacancy Cards */
.job-card {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease-in-out;
}
.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}
.job-card .card-title {
    font-weight: 600;
    color: var(--sl-dark-blue);
}
.job-card .card-subtitle {
    font-size: 0.95rem;
    color: #666 !important;
}
.job-card .list-unstyled li {
    font-size: 0.9rem;
    margin-bottom: 5px;
}
.job-card .btn-primary, .job-card .btn-info {
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 8px;
}

/* Job Detail Modal */
.custom-modal-header {
    background-color: var(--sl-primary-blue);
    color: white;
    border-bottom: none;
}
.custom-modal-header .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%); /* Make X white */
}
.modal-body h6 {
    color: var(--sl-dark-blue);
    font-weight: 600;
    margin-top: 15px;
}
.modal-body ul {
    list-style: none;
    padding-left: 0;
}
.modal-body ul li {
    margin-bottom: 5px;
    font-size: 0.95rem;
}
.modal-body ul li i.fas {
    color: var(--sl-accent-blue);
    width: 20px;
}

/* ... (kode CSS sebelumnya) ... */

/* Job Vacancy Cards */
.job-card {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease-in-out;
    background-color: white; /* Ensure background is white */
}
.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}
.job-card .card-title {
    font-weight: 600;
    color: var(--sl-dark-blue);
}
.job-card .card-subtitle {
    font-size: 0.95rem;
    color: #666 !important;
}
.job-card .card-text {
    font-size: 0.875rem; /* Smaller font for meta info */
}
.job-card .list-unstyled.job-qualifications li {
    font-size: 0.85rem; /* Even smaller for quick qual overview */
    margin-bottom: 3px;
    color: #555;
}
.job-card .btn-primary, .job-card .btn-info {
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 8px;
}

/* Search and Filter Inputs */
.input-group.rounded-pill {
    border-radius: 50px !important;
}
.input-group.rounded-pill .form-control {
    border-top-left-radius: 50px !important;
    border-bottom-left-radius: 50px !important;
    padding-left: 1rem;
}
.input-group.rounded-pill .btn {
    border-top-right-radius: 50px !important;
    border-bottom-right-radius: 50px !important;
}
.form-select.shadow-sm {
    border-radius: 8px; /* Slightly rounded for filter selects */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Job Detail Modal */
.custom-modal-header {
    background-color: var(--sl-primary-blue);
    color: white;
    border-bottom: none;
}
.custom-modal-header .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%); /* Make X white */
}
.modal-body h6 {
    color: var(--sl-dark-blue);
    font-weight: 600;
    margin-top: 15px;
}
.modal-body ul {
    padding-left: 0;
    list-style: none; /* Remove default bullet */
}
.modal-body ul li {
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: #444;
}
.modal-body ul li i.fas {
    color: var(--sl-accent-blue);
    width: 20px;
}
/* For benefits, use different icon color */
#modalBenefits li i.fas {
    color: #28a745; /* Green for benefits */
}

/* ... (sisa kode CSS Anda) ... */