.file-result {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}
.file-result h3 {
    margin: 0;
}
.btn-info {
    background-color: #009556;
    border-color: #009556;
    font-family: Arial;
    font-size: 14px;
    font-weight: 600;
    border-radius: 2px solid transparent;
    padding: 6px 20px;
    height: 35.3229px;
    line-height:20px;
}
.btn-info:hover {
  background-color: #456502; /* Color al pasar el ratón */
}
.file-result p {
    margin: 5px 0;
}
.spinner {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader {
    position: inherit;
    top: 20%;
    left: 50%;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #005746;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

.texto-ayuda-documentacion {
    float: left;
    position: relative;
    margin: 0;
    top: 10px;
    font-size: 12px;
}

.view-toolbar.grid-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.view-toolbar.grid-actions .pull-right {
    float: none !important;
    margin-left: auto;
}

@media (max-width: 900px) {
    .view-toolbar.grid-actions {
        align-items: flex-start;
    }

    .texto-ayuda-documentacion {
        flex: 1 1 100%;
        margin-bottom: 8px;
    }

    .view-toolbar.grid-actions .pull-right {
        margin-left: 0;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        gap: 12px;
        flex-wrap: wrap;
    }
}

