﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

/* Estilos adicionales personalizados */
.category-box {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

    .category-box:hover {
        transform: scale(1.05);
        cursor: pointer;
    }

.category-image {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
}

.category-name {
    text-align: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    border-radius: 0 0 10px 10px;
}
/* Fin Estilos adicionales personalizados */

.panel {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    color: white;
}

.logo img {
    display: block;
    margin: 0 auto;
}

.form-label {
    color: white;
}

/* Fin Estilos adicionales personalizados */

.btn-danger {
    background-color: #d9534f; /* Color rojo similar al del logo */
    border-color: #d9534f;
    color: #000; /* Color negro para el texto */
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif; /* Fuentes similares */
    font-weight: bold; /* Asegurar que el texto sea grueso */
    text-transform: uppercase; /* Convertir el texto a mayúsculas */
}

    .btn-danger:hover {
        background-color: #c9302c; /* Color rojo más oscuro para el hover */
        border-color: #ac2925;
        color: #000; /* Asegurar que el texto sigue siendo negro en hover */
    }

.link-white {
    color: #fff; /* Color blanco para el texto */
    text-decoration: none; /* Asegurar que el enlace esté subrayado */
}

    .link-white:hover {
        color: #f8f9fa; /* Un tono ligeramente diferente para el hover */
        text-decoration: underline; /* Mantener el subrayado en hover */
    }

.sortable-column {
    text-decoration: none; /* Elimina el subrayado del enlace */
    color: inherit; /* Usa el color predeterminado del texto */
    white-space: nowrap; /* Evita saltos de línea */
    display: inline-flex; /* Mantiene el texto y la flecha en la misma línea */
    align-items: center; /* Alinea verticalmente el texto y la flecha */
}

.sort-indicator {
    margin-left: 5px; /* Espacio entre el texto y la flecha */
}