﻿header.navbar {                                     
}

header > h6 {
    color: white;
}

              
body {
    font-family: Arial, sans-serif;
}

.table th, .table td {
    text-align: center;
    vertical-align: middle;
}

.modal-dialog {
    max-width: 800px;
}

input[type="file"] {
    cursor: pointer;
    border: 2px dashed #6c757d;
    padding: 10px;
    background: #f8f9fa;
    text-align: center;
}

    input[type="file"]::file-selector-button {
        background: #007bff;
        color: #fff;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
    }


#content {
    margin-left: 0px;
}

.table-bordered td {
    border: 1px solid #1f201f;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgb(31, 32, 31);
}


label {
    color: black !important;
}

.fixed-top {
    position: inherit !important; 
}

body {
    background-color: #38662b;
}
   
             
.navbar .navbar-nav .nav-item.dropdown .nav-link:hover span {
    color: whitesmoke !important;
}

.navbar-expand-sm .navbar-nav .nav-link {
    line-height: 2rem;  
}
.navbar .navbar-nav .nav-item.dropdown.show a.nav-link span {
    color: whitesmoke !important;
}



.option-card {
    border: 3px solid #f8d800;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}
    .option-card:hover {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
        cursor: pointer;
    }


    .option-card img {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }

    .option-card .btn {
        background-color: white;
        color: #AD2E2E;
        border: 1px solid #ef4444;
        box-shadow: none;
        font-weight:  bold;
    }

        .option-card .btn:hover {        
            background-color: white;
            color: black;
        }


.card-header {
    color: #ffffff;
    font-weight: bold;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, #c6958f, #c04332);
    border-radius: 0px !important;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    border: 0px;
}

.btn-danger {
    background-color: #ef4444;
    border: none;
}

    .btn-danger:hover {
        background-color: #c9302c;
    }

.table thead th {
    background-color: #ef4444;
    color: #fff;
    text-align: center;
}

.table tbody td {
    text-align: center;
}

.pagination {
    justify-content: center;
}



.btn-secondary {
    color: #fff !important;
    background-color: #6C757D;
    border-color: #6C757D;
}
.table > thead > tr > th {
    color: #fff;
    font-size: 12px;
}

.file-input-container {
    position: relative;    
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 10;
}

.file-input-overlay {
    position: absolute;
    right: 0;
    height: 100%;
    display: flex;
}

.search-button,
.clear-button {
    background-color: #d32f2f;
    color: #fff;
    border: none;
    width: 40px;
    height: 100%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .search-button:hover,
    .clear-button:hover {
        background-color: #b71c1c;
    }

.file-name-display {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.page-item.active .page-link {
    background-color: #8e8e8e;
}



.nav-tabs .nav-link.active {                  
    border-radius: 10px 10px 0px 0px !important;
}


.contactanos-submit-btn .contactanos-spinner {
    display: none;
    margin-right: 8px;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: contactanos-spin 1s linear infinite;
}

.contactanos-submit-btn.loading .contactanos-spinner {
    display: inline-block;
}

.contactanos-submit-btn:disabled {
    cursor: not-allowed;
    background-color: #ccc; /* Cambiar color para indicar deshabilitado */
    color: #666;
    border: 1px solid #999;
}

@keyframes contactanos-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


