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 {
    font-family: 'Montserrat', sans-serif;
    color: #182c3b;
    background-color: #e6e9e6;
}

.top-header img {
    max-height: 8vh;
}

#sidebar-wrapper .list-group-item {
    background-color: #182c3b !important;
    color: #fff !important;
    border: none !important;
    padding: 15px 20px;
    white-space: normal;
    display: flex;
    align-items: flex-start;
    height: auto;
}

    #sidebar-wrapper .list-group-item:hover {
        background-color: #267be5 !important;
        color: #000000 !important;
    }

.contenido {
    margin-top: 30px;
}

.table thead th {
    background-color: transparent;
    color: #182c3b;
    border: none;
}

.table td,
.table th,
.table tr {
    border: none !important;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 10px 40px;
    width: 100%;
    margin: 30px 0 20px 0;
    padding: 10px 0;
}

.info-grid div {
    font-size: 17px;
    color: #182c3b;
}
.plantilla {
    width: 50%;
}
.productos {
    width: 85%; 
}
.documentos {
    width: 30%;
}
.btn-add {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: none;
    background-color: #30a95e;
    color: white;
    font-size: 40px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s ease;
    text-decoration: none;
}

    .btn-add:hover {
        transform: scale(1.1);
        background-color: #267be5;
    }

.titulo-btn {
    display: flex;
    align-items: center; 
    gap: 10px; 
    margin-top:30px;
}

.btn-add-small {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background-color: #267be5;
    color: white;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.25);
    transition: transform 0.15s ease;
}

    .btn-add-small:hover {
        transform: scale(1.15);
        background-color: #267be5;
    }

.btn-paginacion {
    display: inline-block;
    padding: 8px 18px;
    background: white;
    color: #182c3b;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #182c3b;
    transition: 0.2s ease-in-out;
    margin: 0 18px;
}

    .btn-paginacion:hover {
        background: #267be5;
        color: white;
    }
.btn-custom {
    background-color: #267be5 !important;
    border-color: #267be5 !important;
    color: #fff !important;
}

    .btn-custom:hover {
        background-color: #1f69c2 !important; 
        border-color: #1f69c2 !important;
    }