/* CSS Document */
/* ===== COLORES DE LA CLÍNICA ===== */
:root {
    --verde-oscuro: #006837;
    --verde-medio: #00994a;
    --verde-lima: #b4e016;
    --gris-fondo: #f4f4f4;
    --blanco: #ffffff;
}

/* ===== BANNER DE COOKIES ===== */
#cookie-banner {
    
    background: var(--blanco);
    border-top: 4px solid var(--verde-lima);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    font-family: Arial, Helvetica, sans-serif;
}

#cookie-banner p {
    margin: 0;
    font-size: 15px;
    color: #333;
}

#cookie-banner a {
    color: var(--verde-medio);
    font-weight: bold;
    text-decoration: none;
}

#cookie-banner a:hover {
    text-decoration: underline;
}

#btn-aceptar-cookies {
    background: var(--verde-medio);
    color: var(--blanco);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: 0.2s;
}

#btn-aceptar-cookies:hover {
    background: var(--verde-oscuro);
}

body {
scrollbar-base-color: #00693E;
scrollbar-arrow-color: #92d401;
scrollbar-3dlight-color: #92d401;
scrollbar-darkshadow-color: #00693E;
scrollbar-face-color: #00693E;
scrollbar-highlight-color: #92d401;
scrollbar-shadow-color: #92d401;
scrollbar-track-color: #92d401;
}
/* Base styles */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 36px;
    color: #00693e;
    text-align: center;
    margin-bottom: 30px;
}

h2 {
    font-size: 28px;
    color: #00693e;
    margin-top: 30px;
    margin-bottom: 10px;
    border-bottom: 2px solid #00693e;
    padding-bottom: 5px;
    text-align: center;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

ul {
    font-size: 16px;
    margin-left: 20px;
    list-style-type: disc;
}

a {
    color: #00693e;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Background for the container */
.container {
    background-color: #e0f7fa;
    border-radius: 12px;
    padding: 30px;
}

/* Custom button */
button {
    background-color: #00693e;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #004d29;
}

/* Estilo general para el banner de cookies */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #00693e; /* Color de fondo */
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    z-index: 1000;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
}

/* Estilo de los botones */
#cookie-banner button {
    background-color: #92d400;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 20px;
    font-size: 14px;
}

#cookie-banner button:hover {
    background-color: #76b800;
}

/* Estilo de los enlaces dentro del banner */
#cookie-banner a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-left: 15px;
}

#cookie-banner a:hover {
    text-decoration: underline;
}
