.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    background-color: #2b1005;
    color: white;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button {
    background-color: #af5b4c;
    border: none;
    color: white;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 2px 1px;
    cursor: pointer;
    border-radius: 12px;
}

.button:hover {
    background-color: #af814c;
}

.content {
    margin-top: 70px;
    padding: 20px;
}

table {
    border-collapse: collapse;
    width: 100%;
    background-color: #ffffff;
    position: relative;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #2b1005;
    color: white;
    position: sticky;
    top: 0;
    z-index: 2;
}

.sticky-row td {
    background-color: #c27251;
    position: sticky;
    top: 57px;
    z-index: 1;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #ddd;
}

.red {
    background-color: red;
    color: white;
}

.orange {
    background-color: orange;
    color: black;
}

.yellow {
    background-color: yellow;
    color: black;
}

.green {
    background-color: green;
    color: white;
}

.pulse-red {
    animation: pulse-red 1s infinite;
}

@keyframes pulse-red {
    0% { background-color: red; }
    50% { background-color: darkred; }
    100% { background-color: red; }
}

.modal-header {
    background-color: #2b1005;
    color: white;
}

.modal-content {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-body {
    background-color: #f7f7f7;
    max-width: 400px;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
}

.modal-body table {
    width: 100%;
}

.modal-body td {
    padding: 10px;
    border: 1px solid #ddd;
}

.modal-body tr:nth-child(even) {
    background-color: #e9ecef;
}

.modal-body tr:hover {
    background-color: #dee2e6;
}
