body {
    background-color: rgb(228, 231, 234);
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto Light", sans-serif;
    margin: 0;
}

.header {
    border-radius: 45px;
    background-color: rgb(255, 255, 255);
    height: 100px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.header-db-logo-container {
    width: 80px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    margin-left: -5px;
}

.header-db-logo {
    width: 100%;
    display: block;
}

.header-name-of-application-container {
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
}

.header-name-of-application {
    font-family: "Courier New", Courier, monospace;
    font-weight: bold;
    color: rgb(50, 55, 60);
    font-size: 22px;
    text-align: center;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.leave-your-message-container {
    width: 60px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding-bottom: 5px;
}

.leave-your-message-container-logo {
    width: 100%;
    display: block;
}

.request-body {
    border-radius: 45px;
    background-color: rgb(255, 255, 255);
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    padding: 20px;
    margin: 20px 0 0 0;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.request-body-function-button {
    position: relative;
    border-radius: 45px;
    height: 75px;
    width: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    text-align: center;
}

.button-text {
    font-family: "Apple SD Gothic Neo", sans-serif;
    font-weight: bold;
    color: rgb(255, 255, 255);
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    z-index: 2;
}

.hoverable-button:hover {
    background-color: rgb(100, 100, 100);
    cursor: pointer;
}

.hoverable-icon:hover {
    cursor: pointer;
}

.request-body-function-button.active {
    background-color: rgb(224, 6, 19);
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.3);
}

.request-body-function-button.active:hover {
    background-color: rgb(200, 5, 15);
}

.hidden {
    display: none !important;
}

.departures-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: "Courier New", Courier, monospace;
}

.departures-table th,
.departures-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.departures-table th {
    background-color: #f5f5f5;
    color: #333;
    font-weight: bold;
}

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

.faq-button {
    position: relative;
    border-radius: 45px;
    height: 35px;
    width: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tail-body {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

@media (max-width: 830px) {

    body {
        padding: 10px;
    }

    .header {
        border-radius: 20px;
        height: auto;
        padding: 12px 14px;
    }

    .header-db-logo-container {
        width: 50px;
    }

    .header-name-of-application {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .leave-your-message-container {
        width: 40px;
    }

    .request-body {
        border-radius: 20px;
        grid-template-columns: 1fr;
        padding: 12px;
        margin-top: 12px;
        gap: 10px;
        justify-items: stretch;
        align-content: start;
    }

    .request-body-function-button {
        border-radius: 20px;
        height: 55px;
        margin: 4px 0;
    }

    .button-text {
        font-size: 15px;
    }

    .faq-button {
        border-radius: 20px;
        height: 30px;
    }


    .departures-table thead {
        display: none;
    }

    .departures-table,
    .departures-table tbody,
    .departures-table tr,
    .departures-table td {
        display: block;
        width: 100%;
    }

    .departures-table tr {
        background: #f9f9f9;
        border-radius: 12px;
        margin-bottom: 12px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
        border: 1px solid #e8e8e8;
    }

    .departures-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
        padding: 6px 18px;
        border-bottom: 1px solid #eee;
        font-size: 14px;
    }

    .departures-table td:last-child {
        border-bottom: none;
    }

    .departures-table td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #555;
        flex-shrink: 0;
        margin-right: 12px;
        font-size: 13px;
    }
}