/* =========================
   BASE
========================= */
.custom-submit-job {
    font-family: 'Poppins', sans-serif;
    max-width: 900px;
    margin: 0 auto;
}

.custom-submit-job * {
    box-sizing: border-box;
}

/* =========================
   SECTION
========================= */
.custom-submit-job .job-section,
.custom-submit-job .company-section {
    background: #E7E7E7;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 32px;
}

.custom-submit-job h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #111827;
}

/* =========================
   FORM GROUP (VERTICAL)
========================= */
.custom-submit-job .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.custom-submit-job .form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #111827;
}

/* =========================
   INPUTS
========================= */
.custom-submit-job input,
.custom-submit-job select,
.custom-submit-job textarea {
    width: 100%;
    height: 44px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px;
    background: #ffffff;
}

.custom-submit-job textarea {
    min-height: 120px;
}

/* Helper text */
.custom-submit-job small,
.custom-submit-job .description {
    font-size: 12px;
    color: #6b7280;
}

/* =========================
   COMPANY LOGO UPLOAD
========================= */
.custom-submit-job .custom-company-logo .wp-job-manager-file-upload {
    position: relative;
    height: 120px;
    border: 2px dashed #9ca3af;
    border-radius: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Hide input */
.custom-submit-job .custom-company-logo input[type="file"] {
    opacity: 0;
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
}

/* Upload icon */
.custom-submit-job .custom-company-logo .wp-job-manager-file-upload::before {
    content: '';
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23055F6A'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 16v2a2 2 0 002 2h12a2 2 0 002-2v-2M12 12V4m0 0l-4 4m4-4l4 4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Hide filename & preview text */
.custom-submit-job .custom-company-logo .file-name,
.custom-submit-job .custom-company-logo .file-preview {
    display: none;
}

/* =========================
   ACTION BUTTONS
========================= */
.custom-submit-job .form-actions-center {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.custom-submit-job .form-actions-center .button {
    height: 44px;
    padding: 0 32px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* Draft */
.custom-submit-job .save-draft-btn {
    background: transparent;
    border: 1px solid #055F6A;
    color: #055F6A;
}

/* Publish */
.custom-submit-job .submit-job-btn {
    background: #055F6A;
    border: none;
    color: #ffffff;
}

.custom-submit-job .submit-job-btn:hover {
    background: #044d55;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .custom-submit-job {
        padding: 0 16px;
    }

    .custom-submit-job .form-actions-center {
        flex-direction: column;
    }

    .custom-submit-job .form-actions-center .button {
        width: 100%;
    }
}
