body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

header {
    width: 100%;
    background-color: #1BBF9A;
    position: relative;
    text-align: center;
}

header img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.file-input-container {
    position: relative;
}

.file-input {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.file-input-label {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1BBF9A;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.progress-container {
    width: 30%;
    height: 10px;
    background-color: #f1f1f1;
}

.progress-bar {
    height: 30%;
    width: 0;
    background-color: #1BBF9A;
    transition: width 0.3s;
}

.process-button {
    padding: 10px 20px;
    background-color: #bbb;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.process-button.active {
    background-color: #1BBF9A;
}

.cyclist-table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

.cyclist-table th, .cyclist-table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cyclist-table th {
    background-color: #1BBF9A;
    color: #fff;
}

.address-table {
    width: 100%;
}

.address-table td {
    padding: 5px;
    border-bottom: 1px solid #ddd;
}

.highlight {
    background-color: #1BBF9A;
    color: #fff;
}

/* Centralizar o texto no título da tabela */
.cyclist-table td.table-title {
    text-align: center;
}

.metrics_highlight {
    background-color: lightgray;
}