/* Ocultar sistema de aplicación original de WP Job Manager */
.job_application.application {
    display: none !important;
}

/* Formulario de Aplicaciones */
.wpjm-application-form-wrapper {
    background: #ffffff;
    border: 2px solid #1763ae;
    border-radius: 8px;
    padding: 40px;
    margin: 40px 0 20px 0;
    clear: both;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wpjm-application-form-wrapper h3 {
    margin-top: 0;
    color: #1763ae;
    font-size: 26px;
    border-bottom: 3px solid #1763ae;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.wpjm-application-form {
    max-width: 100%;
}

.wpjm-form-row {
    margin-bottom: 20px;
}

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

.wpjm-form-row label .required {
    color: #e74c3c;
}

.wpjm-form-row input[type="text"],
.wpjm-form-row input[type="email"],
.wpjm-form-row input[type="file"],
.wpjm-form-row textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.wpjm-form-row input[type="text"]:focus,
.wpjm-form-row input[type="email"]:focus,
.wpjm-form-row textarea:focus {
    border-color: #1763ae;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.2);
}

.wpjm-form-row textarea {
    resize: vertical;
    min-height: 120px;
}

.wpjm-form-row small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.wpjm-gdpr label {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
}

.wpjm-gdpr input[type="checkbox"] {
    margin-right: 8px;
    margin-top: 3px;
    width: auto;
}

/* Aviso de creación de cuenta */
.wpjm-account-notice {
    background: #e7f3ff;
    border-left: 4px solid #1763ae;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.wpjm-account-notice p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.wpjm-account-notice strong {
    color: #1763ae;
    display: block;
}

.wpjm-form-submit {
    margin-top: 30px;
}

.wpjm-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.wpjm-spinner {
    display: inline-block;
    margin-left: 10px;
}

.wpjm-form-messages {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: none;
}

.wpjm-form-messages.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    display: block;
}

.wpjm-form-messages.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    display: block;
}

/* Lista de aplicaciones */
.wpjm-applications-list {
    margin: 30px 0;
}

.wpjm-applications-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.wpjm-applications-table th,
.wpjm-applications-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.wpjm-applications-table thead th {
    background: #f5f5f5;
    font-weight: 600;
}

.wpjm-applications-table tr:hover {
    background: #f9f9f9;
}

.wpjm-applications-table .message-row {
    background: #f5f5f5;
}

.wpjm-applications-table .message-row p {
    margin: 10px 0;
    padding: 10px;
    background: white;
    border-left: 3px solid #1763ae;
}

/* Responsive */
@media (max-width: 768px) {
    .wpjm-application-form-wrapper {
        padding: 20px;
    }
    
    .wpjm-applications-table {
        font-size: 14px;
    }
    
    .wpjm-applications-table th,
    .wpjm-applications-table td {
        padding: 8px;
    }
}
