@font-face {
    font-family: Montserrat;
    src: url(Montserrat-Regular.woff2);
}

* {
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f5f5f7;
    margin: 0;
    padding: 0;
    color: #1d1d1f;
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.subheader {
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
}

th,
td {
    padding: 15px;
    text-align: center;
    cursor: pointer;
}

th {
    background-color: #fe5f31;
    font-weight: 600;
    color: white;
}

td small {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: white;
    margin: 15% auto;
    padding: 20px;
    width: 300px;
    border-radius: 12px;
    text-align: center;
}

.modal-content button {
    margin-top: 10px;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    background: #fe5f31;
    color: white;
    cursor: pointer;
}

.normal {
    background-color: #ffa500;
    color: white;
    font-weight: bold;
}

.changed {
    background-color: #ffe601;
    color: black;
    font-weight: bold;
}

.canceled {
    background-color: #b5a6a6;
    color: white;
    font-weight: bold;
    text-decoration: line-through;
}


select {
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    text-align: center;
}


#invisibleButton {
    position: fixed;
    bottom: 20px;
    /* Adjust as needed */
    right: 20px;
    /* Adjust as needed */
    width: 50px;
    /* Size of the button */
    height: 50px;
    /* Size of the button */
    background-color: transparent;
    /* Make it invisible */
    border: none;
    /* Remove border */
    cursor: pointer;
    /* Change cursor to pointer */
}