/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background-color: #f8f9fa; /* Warna background umum */
}

.wrapper {
    display: flex;
    flex: 1;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    background-color: #333333; /* Hitam Charcoal */
    color: #ffffff; /* Putih */
    padding: 10px 20px;
}

.navbar-brand {
    color: #ffffff; /* Putih untuk teks brand */
    font-size: 2rem;
}

.navbar-nav .nav-link {
    color: #ffffff; /* Putih untuk link di navbar */
    font-size: 1.5rem;
}

.navbar-nav .nav-link:hover {
    color: #130be8; /* Warna saat hover */
}
.navbar-brand span {
    color: white; /* Mengubah warna teks header menjadi putih */
}

/* Sidebar Styles */
.sidebar {
    background-color: #343a40; /* Hitam Charcoal */
    width: 200px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    color: #fff; /* Warna teks dalam sidebar */
}

.sidebar .sidebar-header {
    color: #ffffff;
    font-size: 1.2rem;
    text-transform: uppercase;
    padding-bottom: 1rem;
    border-bottom: 1px solid #495057;
    text-align: center;
    margin-bottom: 20px;
}

.sidebar a {
    color: #ffffff; /* Warna link di sidebar */
    font-size: 1.1rem;
    padding: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
 /* Menghilangkan garis bawah */
}

.sidebar a:hover {
    background-color: #495057; /* Warna saat hover */
    border-radius: 4px;
}

/* Footer Styles */
footer {
    background-color: #343a40; /* Footer background color */
    color: #ffffff; /* Footer text color */
    padding: 10px 0;
    text-align: center;
    width: 100%; /* Ensures footer takes full width */
    position: relative; /* Keeps footer in place at bottom */
    bottom: 0; /* Aligns footer to the bottom */
    left: 0;
}

/* Custom Navbar Styles */
.navbar {
    background-color: #343a40; /* Biru */
}

.navbar-brand {
    color: #ffffff;
}

.navbar-toggler {
    border-color: #ffffff;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%23fff' stroke-width='2' d='M4 6h16M4 12h16M4 18h16'/%3E%3C/svg%3E");
}

/* Additional Utility Styles */
.container {
    max-width: 100%;
    margin: 0 auto;
}

.table-container {
    margin-top: 15px;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f2f2f2;
}

.highlight {
    background-color: yellow;
}

.btn-page {
    padding: 5px 10px;
}

.pagination-info {
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.page-link {
    color: #0d6efd;
}

.page-link:hover {
    color: #0a58ca;
    text-decoration: none;
}

.page-item.disabled .page-link {
    color: #6c757d;
}
.nav {
    display: flex;
    flex-direction: column;
    align-items: left; /* Memusatkan item menu secara horizontal */
 /* Memusatkan item menu secara vertikal jika diperlukan */
    flex-grow: 1; /* Membuat ul mengambil ruang yang ada */
}
