body {
    background-color: #FF0000;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    //height: 100vh;
    margin: 0;
}

.logo {
    max-width: 350px;
    padding: 25px 35px;
}

svg {
    font-family: 'Helvetica', sans-serif;
    font-size: 51px;
}

.input-title, .salary-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 23px;
    font-weight: 600;
    text-align: center;
}

.title-result {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    padding: 0 30px;
    margin-bottom: 10px;
}

.inner-circle-recomanat {
    width: 0;  /* Start with 0% */
    height: 0; /* Start with 0% */
    background-color: white;
    border-radius: 50%;
    animation: grow 0.3s ease forwards; /* Apply the animation */
    animation-delay: .5s;
    position: absolute;
    z-index: 10;
}

@keyframes grow {
    0% {
        width: 0;
        height: 0;
    }
    100% {
        width: 30%;  /* End with 30% of the parent circle's width */
        height: 30%; /* End with 30% of the parent circle's height */
    }
}

.inner-circle-calculat {
    width: 0%;
    height: 0%;
    background-color: black;
    border-radius: 50%;
    transition: all .3s ease;
    position: absolute;
    left: 50%;
    margin: auto;
    transform: translate(-50%, -50%);
    top: 50%;
}

.resultats {
    width: 80%;
}

.resultats .llegenda {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    display: flex;
    align-items: center;
    margin: 7px 0;
}

.resultats .llegenda .llegenda-icon {
    width: 30px;
    height: 30px;
    border: 1px solid black;
    border-radius: 50%;
    margin-right: 14px;
}
.resultats .llegenda .llegenda-mig {
    background: #000;
}

.resultats .llegenda .llegenda-recomanat {
    background: #FFF;
}

.resultats .llegenda .titol {
    font-weight: 600;
}
.resultats .llegenda .text {
}

    
input[type="number"], .salary-selector, .calculate-button {
    font-family: 'Poppins', sans-serif;
    font-size: 23px;
    background-color: #FFFFFF;
    color: #000000;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
    box-sizing: border-box;
}

input#age {
    width: 150px;
    border-radius: 100px;
    height: 40px;
    border: 0px solid black;
}

.salary-title {
    margin-bottom: 15px;
}

.calculate-button {
    width: auto;
    border-radius: 100px;
    height: 40px;
    border: 0px solid black;
    cursor: pointer;
    font-weight: 600;
    padding: 0px 20px;
    margin-top: 20px;
}

.circle-container {
    position: relative;
}

.circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    touch-action: none; /* Prevents default touch actions */
    margin: 15px 0;
}

.salary {
    font-size: 2em;
    color: black;
    user-select: none;
    position: absolute;
    z-index: 10;
}

.pointer {
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 15;
    border: 0px solid black;
}

.trail-pointer {
    width: 26px;
    height: 26px;
    background-color: black;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 5;
}


table {
max-width: 80%;
width: 100%;
border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
}
th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
th {
    background-color: #000;
    color: #FFF;
}
tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.5); /* Color blanco con opacidad */
}
tr:hover {
    background-color: #f5f5f5;
}