.content-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
    width: 100%;
    margin-top: 10px;
}

.table-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.search-container {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100% !important;
    padding: 10px 15px 10px 45px !important;
    font-size: 15px !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.table-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.entries-selector select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.results-info {
    color: #666;
    font-size: 14px;
}

.data-card-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.estado-transito {
    background-color: #e6f7e6;
    color: var(--primary-color);
    padding: 3px 8px;
    border-radius: 999999999px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.btn-detail,
.btn-edit,
.btn-delete {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 11px 14px;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.btn-detail[disabled],
.btn-edit[disabled],
.btn-delete[disabled] {
    color: var(--light-color) !important;
    cursor: not-allowed !important;
}

.btn-detail iconify-icon {
    font-size: 20px;
}

.btn-edit iconify-icon {
    font-size: 18px;
}

.btn-delete iconify-icon {
    font-size: 18px;
}

.btn-detail {
    color: var(--primary-color);
}

.btn-edit {
    color: #000000;
}

.btn-delete {
    color: #DE4141;
}

.btn-detail:hover {
  background-color: rgba(var(--primary-color-rgb), 0.1);
}

.btn-edit:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.btn-delete:hover {
    background-color: rgba(244, 67, 54, 0.1);
}

.data-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-bottom: 15px;
}

.data-card {
    background: white;
    border-radius: 6px;
    box-shadow: var(--shadow-2);
    padding: 15px;
    border-top: 6px solid transparent;
    transition: all 0.16s ease-in-out;
}

.data-card:hover {
    transform: translateY(-4px);
    border-top: 6px solid var(--primary-color);
}

.data-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.data-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.data-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.data-card-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
}

.data-card-field:last-child {
    border-bottom: none;
}

.data-card-label {
    font-weight: 450;
    color: #666;
}

.data-card-value {
    font-weight: 450;
}

.data-card-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.modal-detail-container {
    height: 500px;
    max-width: 700px;
    flex-direction: column;
    position: relative;
}

.modal-detail-container .modal-detail-content{
    max-height: 360px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
    gap: 15px 20px; 
    margin-bottom: 20px;
}

.detail-field,
.detail-content-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-field .detail-label,
.detail-content-section .detail-label{
    font-weight: 600;
    color: #555;
    font-size: 0.9em;
}

.detail-field .detail-value {
    font-size: 1em;
    color: #333;
    word-break: break-word;
}

.detail-content-section {
    position: relative; 
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    overflow: hidden; 
}

.gradient-overlay {
    position: absolute;
    top: 81%;
    left: 0;
    width: 98%;
    height: 50px; 
    background: linear-gradient(to top, white 0%, transparent 100%);
    pointer-events: none; 
    z-index: 1;
}

.detail-content-section .field-label {
    font-weight: 600;
    color: #555;
    font-size: 0.9em;
    margin-bottom: 10px;
    display: block;
}

.detail-content-text {
    font-size: 0.95em;
    color: #333;
    line-height: 1.5;
    white-space: pre-wrap;
}

.dataTables_wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.dataTables_wrapper .bottom {
    display: flex;
    justify-content: center;
}

.dataTables_wrapper .dataTables_paginate .pagination {
    display: flex;
}