/* Definición de Variables de Color */
:root {
    --color-bg: #f0f0f0;
    --color-primary: #057581;
    --color-primary-hover: #02555e;
    --color-error: red;
    --color-text: #333;
    --color-bg-light: #ffffff;
    --color-shadow: rgba(0, 0, 0, 0.1);
    --color-logout-bg: #d9534f;
    --color-logout-bg-hover: #c9302c;
    --color-link: #057581;
    --color-link-hover: #02555e;
}

/* Estilos Generales */

.fecha-historico{
    /*color: var(--color-logout-bg-hover);*/
}

#ayuda-prestador {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
    text-align: center;
    position: relative;
    float: left;
    width: 100%;
    padding: .75rem 1.25rem;
}

#datos-prestador {
    position: relative;
    float: right;
    width: 100%;
    background: #FFF;
    text-align: right;
    margin: 20px 0px;
}

#prestadores-accordion, #prestadores-accordion-historico {
    position: relative;
    float: left;
    width: 100%;
}

#bloque-aranceles-historicos {
    position: relative;
    float: left;
    width: 100%;
    margin: 20px 0;
}

#bloque-aranceles-historicos h1{
    font-size: 20px;
    text-transform: uppercase;
}

.prestadores-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 20px;
    box-sizing: border-box;
}

.prestadores-login-box {
    background: var(--color-bg-light);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px var(--color-shadow);
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
}

.prestadores-login-box form p {
    margin-bottom: 15px;
}

.prestadores-login-box label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: var(--color-text);
}

.prestadores-login-box input[type="text"],
.prestadores-login-box input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.prestadores-login-box input[type="submit"] {
    font-weight: normal;
    width: 100%;
    padding: 10px;
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.prestadores-login-box input[type="submit"]:hover {
    background-color: var(--color-primary-hover);
}

.prestadores-error {
    color: var(--color-error);
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.prestadores-enlaces-wrapper {
    background-color: var(--color-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px var(--color-shadow);
    max-width: 600px;
    margin: 20px auto;
    box-sizing: border-box;
}
.prestadores-enlaces-wrapper {
    margin: 20px 0;
}

#prestadores-accordion h3, #prestadores-accordion-historico h3 {
    background-color: #057581 !important;
    color: #fff;
    font-weight: normal;
    padding: 10px;
    cursor: pointer;
    margin: 0;
    border-bottom: 1px solid;
}

#prestadores-accordion div, #prestadores-accordion-historico div {
    padding: 10px;
    border: 1px solid #057581 !important;
    border-top: none;
}


.cuit-prestador {
    position: relative;
    float: left;
    width: 100%;
    display: block;
    font-size: 12px;
    text-align: right;
    color: #716b6b;
    border-bottom: 1px solid #716b6b;
    margin-bottom: 20px;
}

.prestadores-enlaces-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prestadores-enlaces-list li {
    margin-bottom: 15px;
    transition: transform 0.2s ease;
}

.prestadores-enlaces-list li a {
    text-decoration: none;
    color: var(--color-link);
    /*font-weight: bold;*/
    font-size: 16px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border-bottom: 2px solid transparent;
    padding-bottom: 3px;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.prestadores-enlaces-list li:hover {
    transform: translateY(-2px);
}

.prestadores-enlaces-list li a:hover {
    color: #004a56;
    border-bottom-color: #004a56;
}

.prestadores-logout-wrapper {
    text-align: center;
    margin-top: 20px;
    position: relative;
    width: 100%;
    float: left;
}


.prestadores-logout-button, #bloque-aranceles-historicos button{
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color-logout-bg);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    /*font-weight: bold;*/
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.prestadores-logout-button:hover, #bloque-aranceles-historicos button:hover {
    background-color: var(--color-logout-bg-hover);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    color: #FFF;
}

#bloque-aranceles-historicos button{
    padding: 0px 30px !important;
}

#bloque-aranceles-historicos form{
    display: flex;
    align-items: center;
    gap: 10px;
}

#tags{
    width: 50% !important;
}

.wrapper-captcha {
    width: 88%;
    text-align: center;
    margin: 0 auto 20px;
}
/* Media Queries para Responsividad */
@media (max-width: 768px) {
    
    #bloque-aranceles-historicos button{
        position: relative;
        float: left;
        width: 100%;
    }

    #bloque-aranceles-historicos form{
       display: block;
    }

    .prestadores-login-box {
        padding: 15px 20px;
    }

    .prestadores-enlaces-wrapper {
        padding: 15px;
    }

    .cuit-prestador {
        text-align: center;
    }

    .prestadores-logout-button {
        width: 100%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    
    #bloque-aranceles-historicos button{
        position: relative;
        float: left;
        width: 100%;
    }

    #bloque-aranceles-historicos form{
       display: block;
    }

    .prestadores-login-box {
        padding: 10px 15px;
    }

    .prestadores-enlaces-wrapper {
        padding: 10px;
    }

    .prestadores-logout-button {
        padding: 12px;
        font-size: 16px;
    }

    .prestadores-login-box input[type="submit"] {
        font-size: 14px;
    }
}