body {
    padding: 0;
    margin: 0;
    background: #ffcb47;
    min-width: 2200px;
}

.content {
    max-width: 2200px;
    margin: auto;
}

.buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.buttons button {
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    margin-left: 20px;
    background: #3d348b;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-size: calc(18px + 2 * (1200px - 400px) / 800);
    cursor: pointer;
    transition: 0.5s all ease;
}

.active {
    box-shadow: 0 0 15px black;
    transform: scale(1.1);
    transition: 0.5s all ease;
}

.choose_users {
    width: 700px;
    height: 300px;
    margin: auto;
    margin-top: 80px;
    overflow: hidden;
}

.choose_users select {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: #4a5043;
}

.choose_users select option {
    color: white;
    text-align: center;
    font-size: calc(20px + 2 * (1200px - 400px) / 800);
    margin-top: 10px;
}

.choose_users select::-webkit-scrollbar {
    width: 0 !important;
}

.date .date-title {
    text-align: center;
    font-size: calc(32px + 2 * (1200px - 400px) / 800);
    color: #4a5043;
    font-weight: bold;
    padding-top: 40px;
}

.date .date-wrapper {
    text-align: center;
    margin-top: 30px;
}

.date input {
    border-radius: 10px;
    border: none;
    padding: 10px 15px;
    font-size: calc(15px + 2 * (1200px - 400px) / 800);
    margin-left: 10px;
}

.button_get {
    padding: 10px 20px;
    background: #8ddd32;
    border-radius: 25px;
    border: none;
    box-shadow: 0 0 5px black;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: 0.5s all ease;
    display: none;
}

.button_get:hover {
    background: #dd324c;
    color: white;
    transition: 0.5s all ease;
    box-shadow: 0 0 25px black;
}

table {
    border: 5px solid #4a5043;
    border-radius: 15px;
    width: 100%;
    margin: auto;
    border-collapse: collapse;
    border-top: 15px;
    margin-top: 20px;
    display: none;
    overflow: hidden;
}

table thead th {
    font-size: 18px;
    text-transform: uppercase;
    color: white;
    padding: 15px 5px;
}

table thead {
    background: #4a5043;
}

table tbody {
    font-size: 15px;
}

.alert {
    position: fixed;
    bottom: 0;
    background: #ff6347;
    text-align: center;
    padding: 30px 0px;
    width: 100%;
    display: none;
    z-index: 999;
}

.alert .text {
    color: white;
    font-size: 25px;
    font-weight: 200;
}