/* Estilos para el frontend del plugin Onsat Garacom Gestor Pedidos */

.onsat-cfp-public-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.onsat-cfp-table-container {
    margin-top: 20px;
    overflow-x: auto;
}

.dataTables_wrapper {
    margin: 0 auto;
}

.dataTables_filter input {
    margin-left: 10px;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.dataTables_length select {
    margin: 0 5px;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Botones personalizados */
.onsat-cfp-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.onsat-cfp-btn-primary {
    background-color: #0073aa;
    color: #fff;
}

.onsat-cfp-btn-primary:hover {
    background-color: #005a87;
}

.onsat-cfp-btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.onsat-cfp-btn-secondary:hover {
    background-color: #5a6268;
}

.onsat-cfp-btn-danger {
    background-color: #dc3232;
    color: #fff;
}

.onsat-cfp-btn-danger:hover {
    background-color: #b32424;
}

.onsat-cfp-btn-small {
    padding: 4px 8px;
    font-size: 12px;
    margin-right: 5px;
}

/* Modal del frontend */
.onsat-cfp-public-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.onsat-cfp-public-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.onsat-cfp-public-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0073aa;
    flex-shrink: 0;
}

.onsat-cfp-public-modal-header h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.onsat-cfp-public-close {
    color: #aaa;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.onsat-cfp-public-close:hover,
.onsat-cfp-public-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.onsat-cfp-public-modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
}

.onsat-cfp-form-field {
    margin-bottom: 15px;
}

.onsat-cfp-form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.onsat-cfp-form-field input[type="text"],
.onsat-cfp-form-field input[type="email"],
.onsat-cfp-form-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.onsat-cfp-form-field input:focus,
.onsat-cfp-form-field textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.1);
}

.onsat-cfp-form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.onsat-cfp-form-actions {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.onsat-cfp-form-actions button {
    margin-right: 10px;
}

/* Responsividad para móviles */
@media (max-width: 768px) {
    .onsat-cfp-public-container {
        padding: 10px;
    }
    
    .onsat-cfp-public-modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 15px;
    }
    
    .onsat-cfp-public-modal-header h2 {
        font-size: 20px;
    }
    
    .dataTables_length,
    .dataTables_filter {
        float: none;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .onsat-cfp-form-actions {
        flex-direction: column;
    }
    
    .onsat-cfp-form-actions button {
        width: 100%;
        margin-right: 0;
    }
}
