/* Contenedor principal */
.tse-calculadora-container {
    max-width: 100%;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
}

/* Body */
.tse-calculadora-body {
    padding: 0;
}

/* Label */
.tse-label {
    display: block;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input */
.tse-input {
    width: 100%;
    height: 55px;
    padding: 0 20px;
    margin-bottom: 20px;
    font-size: 18px;
    border: 2px solid #dddddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    color: #333;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.tse-input:focus {
    outline: none;
    border-color: rgba(49,67,226,0.8);
}

.tse-input::placeholder {
    color: #999;
}

/* Button */
.tse-button {
    width: 100%;
    height: 55px;
    background: rgba(49, 67, 226, 0.8);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(49, 67, 226, 0.2);
}

.tse-button:hover {
    background: #3143e2;
}

.tse-button:active {
}

.tse-button-icon {
    font-size: 20px;
}

/* Resultado */
.tse-resultado {
    margin-top: 25px;
    padding: 20px;
    background-color: #dddddd;
    border-left: 4px solid #3143e2;
    border-radius: 5px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    min-height: 20px;
    display: none;
}

.tse-resultado.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.tse-resultado-nivel {
    color: #3143e2;
    font-weight: 700;
    font-size: 18px;
}

.tse-resultado-rango {
    color: #10b981;
    font-weight: 600;
}

/* Animación */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .tse-calculadora-container {
        margin: 20px 15px;
        border-radius: 5px;
        padding: 20px;
        border: 1px solid #d2d2d7;
    }

    .tse-input,
    .tse-button {
        height: 50px;
        font-size: 16px;
    }
}