/* Basic styles for the application */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    padding: 20px;
}

.table {
    width: 100%;
    margin-top: 20px;
}

.logo {
    width: 150px;
}

/* Responsive styles */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    input, select, button {
        width: 100%;
        margin-bottom: 10px;
    }

    .table {
        font-size: 14px;
    }
}

/* Hamburger menu styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: #333;
    margin: 3px 0;
}

@media (max-width: 768px) {
    .navbar-collapse {
        display: none !important;
    }
    .hamburger-menu {
        display: flex;
    }
}

/* Show class for the navigation menu */
.show {
    display: block !important; /* Ensure the menu is displayed */
}

/* Ensure the collapse class shows when toggled */
.collapse.show {
    display: block !important; /* Ensure the menu is displayed */
}

/* Custom alert styles */
.custom-alert {
    position: fixed;
    top: 15%;
    right: 5%;
    z-index: 1000;
    padding: 20px;
}
