html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.footer-cart {
    background-color: #343a40;
    color: #f8f9fa;
    border-top: 4px solid red; 
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

.btn-success {
    font-size: 12px
}

.btn-primary {
    font-size: 12px
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.container {
    flex-grow: 1;
    padding-top: 45px; /* Ajusta el valor según la altura de tu navbar */
}

.footer-cart {
    background-color: #333; /* Cambia según el diseño */
    color: white;
    padding: 20px 0;
    text-align: center;
}

.custom-button {
    height: 80px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

    .custom-button i {
        margin-right: 10px;
    }

    .custom-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }

    .custom-button:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
    }

.btn-outline-dark:hover {
    background-color: transparent !important; /* No cambia el fondo */
    border-color: #343a40 !important; /* Mantiene el borde negro */
    color: #343a40 !important; /* Mantiene el color del texto en negro */
}

.card-totales {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 1rem;
    position: relative;
}

.card-totales-title {
    position: absolute;
    top: -15px;
    left: 10px;
    background-color: white;
    padding: 0 5px;
    font-weight: bold;
    font-size: 14px;
}

/* Botón de agregar alineado a la derecha */
.add-requisito-btn {
    position: absolute;
    top: -15px;
    right: 10px;
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}
