.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.content {
    flex: 1;
    padding: 20px;
}
footer {
    background-color: rgb(25, 22, 42);
    color: rgb(255, 177, 0);
    padding: 10px 0;
    text-align: center;
}
.navbar, .sidebar {
    background-color: rgb(25, 22, 42);
    color: rgb(255, 177, 0);
}
.navbar .navbar-brand {
    color: rgb(255, 177, 0);
}
.sidebar a.nav-link {
    color: rgb(255, 177, 0);
}
.sidebar a.nav-link:hover {
    background-color: rgb(40, 35, 60);
}
.btn-firecom {
    background-color: rgb(255, 177, 0);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}
.btn-firecom:hover {
    background-color: rgb(230, 160, 0);
    color: white;
}
select.btn-firecom {
    padding: 10px 20px;
    background-color: rgb(255, 177, 0);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
select.btn-firecom:focus {
    outline: none;
    box-shadow: none;
}
select.btn-firecom option {
    color: white;
    background-color: rgb(255, 177, 0)
}
body {
    background: linear-gradient(to bottom, rgb(25, 22, 42), rgb(55, 50, 70));
    min-height: 100vh;
    margin: 0;
}
.custom-card {
    border-radius: 15px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.custom-card .card-body {
    padding: 30px;
}
.custom-card p, .custom-card ul, .custom-card li {
    color: white;
}
.custom-card h1, .custom-card h2, .custom-card h3, .custom-card h4, .custom-card h5 {
    color: rgb(255, 177, 0);
    font-weight: bold;
}
.custom-input {
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
}
.firecom-btn {
    background-color: rgb(255, 177, 0);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 10px 0 20px 0;
}
.firecom-btn:hover {
    background-color: rgb(230, 160, 0);
    color: white;
}
.text-center .firecom-btn {
    display: inline-block;
    margin-top: 20px;
}
.custom-input:focus {
    border-color: rgb(255, 177, 0);
    box-shadow: 0 0 5px rgba(255, 177, 0, 0.8);
    outline: none;
    color: #A8A0D8;
}
.custom-input::placeholder {
    color: #A8A0D8;
    font-weight: bold;
}
.custom-input:not(:placeholder-shown) {
    color: #A8A0D8;
    font-weight: bold;
}
.form-check-input:checked {
    background-color: rgb(255, 177, 0);
    border-color: rgb(255, 177, 0);
}
.form-check-input:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(255, 177, 0, 0.8);
}
.sidebar .nav-link.active {
    background-color: rgb(255, 177, 0);
    color: white;
    border-radius: 5px;
}
.icon-edit, .icon-delete {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: invert(64%) sepia(92%) saturate(429%) hue-rotate(2deg) brightness(106%) contrast(100%);
}
.icon-edit:hover, .icon-delete:hover {
    filter: invert(64%) sepia(92%) saturate(429%) hue-rotate(2deg) brightness(120%) contrast(110%);
}
.btn-action {
    border: none;
    background-color: transparent;
    padding: 0;
    text-decoration: none;
}
.firecom-tab {
    background-color: rgb(255, 177, 0);
    color: white;
    padding: 10px 20px;
    border: none !important;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 5px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}
.firecom-tab:hover {
    background-color: rgb(220, 150, 0);
    color: white !important;
    border: none !important;
}
.firecom-tab.active,
.firecom-tab[aria-selected="true"],
.nav-tabs .nav-link.active {
    background-color: rgb(255, 177, 0) !important;
    color: white !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
@media (max-width: 768px) {
    .table-responsive {
        display: block;
        width: 100%;
        overflow-x: auto;
    }
    .table th, .table td {
        display: block;
        width: 100%;
    }
    .table thead {
        display: none;
    }
    .table td {
        position: relative;
        padding-left: 50%;
        border-top: 1px solid #ddd;
    }
    .table td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        font-weight: bold;
        color: #999;
    }
    .table td[data-label="Status"] {
        border-bottom: 2px solid rgb(255, 177, 0);
    }
}
@media (min-width: 769px) {
    .table th, .table td {
        display: table-cell;
    }
    .table-responsive {
        display: table;
    }
}