body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
}

.container {
    margin-top: 20px;
}

.navbar {
    border-radius: 0;
}

.navbar-brand {
    font-weight: bold;
}

.nav-link {
    color: #343a40;
}

.nav-link:hover {
    color: #007bff;
}

.content {
    margin-bottom: 20px;
}

.page-wrapper {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer {
    padding: 10px 0;
    text-align: center;
    background-color: #343a40;
    color: #fff;
}

.footer a {
    color: #007bff;
}

.footer a:hover {
    color: #0056b3;
}

.modal-content {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-title {
    font-weight: bold;
}

.modal-body {
    padding: 20px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-lupa {
    color: #007bff;
    text-decoration: none;
}

.btn-lupa:hover {
    color: #0056b3;
}

.loader {
    font-size: 24px;
    color: #007bff;
}

.animationload {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quick-menu .nav-link {
    margin: 5px;
    /* Add some spacing between buttons */
    transition: all 0.3s ease;
    /* Smooth transition for hover effects */
}

.quick-menu .nav-link:hover {
    background-color: #007bff;
    /* Change background color on hover */
    color: white;
    /* Change text color on hover */
    transform: scale(1.05);
    /* Slightly enlarge the button */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Add shadow effect */
}

.card {
    border: 1px solid #e0e0e0;
    /* Light border */
    border-radius: 8px;
    /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.nav-link {
    transition: background-color 0.3s, color 0.3s;
    /* Smooth transition */
}

.nav-link:hover {
    background-color: #007bff;
    /* Change background on hover */
    color: white !important;
    /* Change text color on hover */
}

.quick-menu>li>a.active {
    color: white !important;
    /* Force the color of the active link to white */
}

.quick-menu>li.active {
    background-color: #007bff;
    /* Optional: Change background color for active <li> */
}

.btn-outline-primary {
    border-color: #007bff;
    /* Border color */
}

.btn-outline-primary:hover {
    background-color: #007bff;
    /* Change background on hover */
    color: white;
    /* Change text color on hover */
}

.container-fluid {
    padding: 0;
    /* Remove padding */
}

.img-fluid {
    width: 100%;
    /* Make the image full width */
    height: auto;
    /* Maintain aspect ratio */
}

.navbar-toggler {
    margin-left: auto;
    /* Ensure it stays on the right */
}

.bg-ocean-blue {
    background-color: #007BFF;
    /* Ocean blue color */
}


.footer {
    padding: 10px 0;
    background-color: #0a488b;
    color: white;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    text-align: center;
}

.footer span {
    display: block;
    /* Make each span a block element */
    margin: 5px 0;
    /* Add some margin for spacing */
    color: white;
    /* Change text color to white for better contrast */
}

@media (min-width: 768px) {
    .footer span {
        display: inline;
        /* Keep inline for larger screens */
        margin: 0 10px;
        /* Horizontal margin for larger screens */
    }
}

@media (max-width: 768px) {
    .footer {
        text-align: left;
        font-size: 0.5rem;
    }
}