.sukymoto-data-viewer {
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.sukymoto-filter-container {
    background: #f8f9fa;
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sukymoto-search-box {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.sukymoto-search-input {
    flex: 1;
    min-width: 250px;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
}

.sukymoto-search-input:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 2px rgba(44, 90, 160, 0.2);
}

.sukymoto-search-btn {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.sukymoto-search-btn:hover {
    background: #1e3d6f;
}

.sukymoto-clear-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.sukymoto-clear-btn:hover {
    background: #545b62;
}

.sukymoto-data-container {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.sukymoto-welcome {
    padding: 60px 20px;
    text-align: center;
    color: #6c757d;
    font-size: 18px;
}

.sukymoto-no-data {
    padding: 60px 20px;
    text-align: center;
    color: #6c757d;
    font-size: 16px;
}

/* Tabla de resultados */
.sukymoto-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.sukymoto-table th {
    background: #2c5aa0;
    color: white;
    padding: 15px 12px;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sukymoto-table td {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
    font-size: 14px;
}

.sukymoto-table tr:hover {
    background-color: #f8f9fa;
}

.sukymoto-table tr:last-child td {
    border-bottom: none;
}

/* Botón ver información */
.sukymoto-ver-btn {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.sukymoto-ver-btn:hover {
    background: #1e3d6f;
}

/* Modal para información completa */
.sukymoto-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.sukymoto-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.sukymoto-modal-header {
    background: #2c5aa0;
    color: white;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sukymoto-modal-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.sukymoto-close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sukymoto-close:hover {
    opacity: 0.8;
}

.sukymoto-modal-body {
    padding: 20px;
}

.sukymoto-detail-table {
    width: 100%;
    border-collapse: collapse;
}

.sukymoto-detail-table td {
    padding: 12px 8px;
    border-bottom: 1px solid #e9ecef;
}

.sukymoto-detail-table tr:last-child td {
    border-bottom: none;
}

.sukymoto-detail-label {
    font-weight: bold;
    color: #2c5aa0;
    width: 40%;
}

.sukymoto-detail-value {
    color: #333;
}

.sukymoto-error {
    padding: 20px;
    text-align: center;
    color: #dc3545;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    margin: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .sukymoto-search-box {
        flex-direction: column;
        align-items: stretch;
    }
    
    .sukymoto-search-input {
        min-width: auto;
    }
    
    .sukymoto-table-container {
        overflow-x: auto;
    }
    
    .sukymoto-table {
        font-size: 12px;
    }
    
    .sukymoto-table th,
    .sukymoto-table td {
        padding: 8px 6px;
    }
    
    .sukymoto-modal-content {
        width: 95%;
        margin: 10% auto;
    }
}