.app_container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
    margin-bottom: 15px;
}

.tabs {
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 15px;
    background-color: #ccc;
    border: 1px solid #999;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    color: white;
}

.tab-button.active {
    background-color: #ffb320;
    color: black;
    border-bottom: 1px solid white;
}

.form-section {
    display: none;
    padding: 25px;
    border: 1px solid #999;
    border-radius: 0 5px 5px 5px;
    background-color: #fff;
}

.form-section.active {
    display: block;
}

label {
    display: block;
    margin-bottom: 5px;
}

input,
select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #999;
    border-radius: 5px;
    box-sizing: border-box;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.button-group {
    text-align: right;
    margin-top: 20px;
}

.button-group button {
    padding: 10px 20px;
    background-color: #ffb320;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button-group button.reset {
    background-color: #ccc;
}

.button-group button.back {
    background-color: #6c757d;
}

header {
    background-color: #f8f9fa;
    padding: 20px;
    display: flex;
    align-items: center;
}

header img {
    height: 50px;
    margin-right: 20px;
}



.content {
    flex: 1;
    padding: 20px;
}

/* Customize DataTable styling */
.dataTables_wrapper .dataTables_filter input {
    width: 300px;
    margin-left: 0.5em;
}

.btn-group {
    display: flex;
    gap: 5px;
}

.btn-primary,
.btn-danger {
    padding: 5px 10px;
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
}

table thead th {
    background-color: #1ba6e1;
    color: white;
}

.table-responsive {
    margin-top: 20px;
}

/* Styling for pagination */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0.5rem 1rem;
    margin-left: 2px;
}

.btn-delete {
    background-color: #dc3545;
    /* Bootstrap danger color for delete */
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-delete:hover {
    background-color: #c82333;
    /* Darker red on hover */
}

.btn-delete i {
    margin-right: 5px;
    /* Space between icon and text */
}

footer {
    background-color: #f8f9fa;
    padding: 10px;
    text-align: center;
}


