* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    background: linear-gradient(to right, #161516, #031c30);
}

.main {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box {
    width: 50%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    height: 90vh;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.content {
    display: flex;
    flex-direction: column;
}


.input label {
    font-weight: bold;
    margin-bottom: 5px;
}

.text-input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.calculate {
    width: 100%;
    padding: 7px;
    border: none;
    background-color: #4caf50;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.result {
    margin-top: 20px;
}

.result div {
    padding: 2px;
    margin-right: 10px;
    margin-bottom: 10px;
}

#map {
    width: 100%;
    height: 90vh;
    border-radius: 10px;
    margin-left: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

th,
td {
    border: 1px solid #dddddd;
    text-align: center;
    padding: 4px;
}

th {
    background-color: #f2f2f2;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #ddd;
}

.column {
    flex: 1;
    margin-right: 20px;
}

.column:last-child {
    margin-right: 0;
}

#orography_factor {
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

#orography_factor_comment {
    color: red;
    text-align: center;
    font-weight: bold;
}

.disclaimer {
    margin-top: 5px;
    text-align: center;
    font-size: 12px;
}