.suky-moto-pro-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.suky-moto-pro-container h2 {
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.form-section {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.form-section h3 {
    margin-top: 0;
    color: #0073aa;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group textarea {
    min-height: 80px;
}

.form-group input[readonly] {
    background-color: #f0f0f0;
}

.accesorios-container {
    margin-bottom: 20px;
}

.accesorio-row {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.accesorio-row .form-group {
    flex: 1;
}

.submit-group {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.submit-group input[type="submit"] {
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.submit-group input[type="submit"]:hover {
    background: #005177;
}

.redirect-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 15px;
}

.redirect-button:hover {
    background: #3e8e41;
}

#suky-moto-pro-message {
    margin-bottom: 20px;
}

#suky-moto-pro-message .error {
    color: #ed5565;
    background: #fef0f0;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ed5565;
}

#suky-moto-pro-message .success {
    color: #4CAF50;
    background: #f0f9f0;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #4CAF50;
}

#suky-moto-pro-message .loading {
    color: #0073aa;
    background: #f0f7fc;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #0073aa;
}

/* Estilos para el área administrativa */
.wrap h1 {
    color: #0073aa;
}

.wp-list-table {
    margin-top: 20px;
}

#suky-moto-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#suky-moto-details-modal .modal-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

#suky-moto-details-modal h2 {
    margin-top: 0;
}

#suky-moto-close-modal {
    background: #0073aa;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
}

.entry-details h3 {
    color: #0073aa;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-top: 20px;
}

.entry-details p {
    margin: 8px 0;
}