* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #eef3f8;
    color: #1b1f1f;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 80px 20px 40px;
}

.historico-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(161, 161, 161, 0.25);
    width: 100%;
    max-width: 760px;
}

.perfil-header {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 2px solid #1e3a5f;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.avatar-ficticio {
    width: 70px;
    height: 70px;
    background-color: #0284c7;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    flex-shrink: 0;
}

.perfil-dados h1 {
    font-size: 24px;
    color: #141819;
    margin-bottom: 6px;
}

.perfil-dados p {
    color: #141819;
    font-size: 14px;
    line-height: 1.5;
}

.seccao-clinica {
    margin-bottom: 25px;
}

.seccao-clinica h3 {
    font-size: 15px;
    color: #303132;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    border-bottom: 1px dashed #334155;
    padding-bottom: 8px;
}

.lista-dados li {
    padding: 16px 0;
    border-bottom: 1px solid #26384a;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 22px;
}

.lista-dados li:last-child {
    border-bottom: none;
}

.registo-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.registo-info > strong {
    color: #303132;
    font-size: 17px;
    margin-bottom: 4px;
}

.registo-info small {
    color: #64748b;
    font-size: 14px;
    line-height: 1.4;
}

.registo-info small strong {
    color: #64748b;
}

.data-registo {
    font-size: 13px;
    color: #202427;
    white-space: nowrap;
    background-color: #d1d5db;
    padding: 7px 10px;
    border-radius: 999px;
}

.lista-dados::-webkit-scrollbar {
    width: 8px;
}

.lista-dados::-webkit-scrollbar-thumb {
    background-color: #334155;
    border-radius: 20px;
}

.lista-dados::-webkit-scrollbar-thumb:hover {
    background-color: #475569;
}

.actions-footer {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    flex: 1;
    padding: 13px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.btn-back {
    background-color: #cbd5e1;
    color: rgb(0, 0, 0);
}

.btn-back:hover {
    background-color: #cbd5e1;
}

.btn-approve {
    background-color: #16a34a;
    color: white;
}

.btn-approve:hover {
    background-color: #15803d;
}

.erro {
    color: #f87171;
}

@media (max-width: 600px) {
    body {
        padding-top: 40px;
    }

    .perfil-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .lista-dados li {
        flex-direction: column;
    }

    .data-registo {
        white-space: normal;
    }

    .actions-footer {
        flex-direction: column;
    }
}