﻿.cursor_pointer {
    cursor: pointer;
}

/*Programación*/
.bg_color_lightgreen {
    background-color: lightgreen;
    color: white;
}

.border_green {
    border: 1px solid green !important;
}

.color_green{
    color:green;
}

.color_red{
    color:red;
}

.transform-y {
    /*display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 40px 20px;*/
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


    .transform-y:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

button .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Contenedor de la tabla con scroll */
.divTableContainer {
    max-height: 800px;
    overflow: auto;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    margin-bottom: 20px;
    position: relative;
}

/* Header fijo */
.tblHeaderFixed thead {
    position: sticky;
    top: 0;
    z-index: 10;
}