/* ========================================== */
/* CREATE POST PAGE - COMPLETE STYLES */
/* ========================================== */

/* Container */
.post-job-card {
    border: 2px solid #000000;
    border-radius: 0px;
    max-width: 700px;
    margin: 0 auto;
}

/* Card Header */
.post-job-card-header {
    background: #000000;
    color: #ffffff;
    border-radius: 0px;
    border-bottom: 3px solid #d4c9b8;
    padding: 12px 16px;
}

.post-job-card-header h5 {
    margin: 0;
    font-family: 'Times New Roman', serif;
}

/* Card Body */
.post-job-card-body {
    background: #f5f0eb;
    padding: 20px 24px;
}

/* Alert */
.alert-error {
    border-radius: 0px;
}

/* Employer Badge */
.employer-badge {
    background: #000000;
    color: #ffffff;
    padding: 8px 16px;
    margin-bottom: 16px;
    border: 1px solid #000000;
    font-family: 'Georgia', serif;
    font-size: 0.85rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
    display: block;
}

.form-input {
    border-radius: 0px;
    border: 1px solid #000000;
    color: #000000 !important;
    background: #ffffff;
    padding: 6px 12px;
    width: 100%;
}

.form-input:focus {
    border-color: #000000;
    box-shadow: none;
}

.form-textarea {
    border-radius: 0px;
    border: 1px solid #000000;
    color: #000000 !important;
    background: #ffffff;
    padding: 6px 12px;
    width: 100%;
    line-height: 1.4;
}

.form-textarea:focus {
    border-color: #000000;
    box-shadow: none;
}

.form-select-country {
    border-radius: 0px;
    border: 1px solid #000000;
    color: #000000 !important;
    background: #ffffff;
    width: 100%;
    padding: 6px 12px;
}

.form-text {
    font-size: 0.85rem;
    color: #6c757d;
}

.text-muted {
    color: #000000;
}

/* Submit Button */
.btn-submit-post {
    border-radius: 0px;
    background: #000000;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    padding: 12px;
    border: 1px solid #000000;
}

.btn-submit-post:hover {
    background: #ffffff;
    color: #000000;
}

/* Text Danger */
.text-danger {
    color: #dc3545;
}

/* ========================================== */
/* SELECT2 CUSTOM STYLES */
/* ========================================== */

.select2-container--default .select2-selection--single {
    border-radius: 0px !important;
    border: 1px solid #000000 !important;
    height: 38px !important;
    background: #ffffff !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000000 !important;
    line-height: 38px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px !important;
}

.select2-dropdown {
    border-radius: 0px !important;
    border: 1px solid #000000 !important;
}

.select2-search--dropdown .select2-search__field {
    border-radius: 0px !important;
    border: 1px solid #000000 !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #000000 !important;
    color: #ffffff !important;
}

.select2-results__option {
    font-family: 'Georgia', serif !important;
    padding: 8px 12px !important;
}

.select2-selection__rendered {
    font-family: 'Georgia', serif !important;
}

/* ========================================== */
/* RESPONSIVE */
/* ========================================== */
@media (max-width: 768px) {
    .post-job-card {
        margin: 0 8px;
    }
    
    .post-job-card-body {
        padding: 16px;
    }
    
    .form-input,
    .form-textarea,
    .form-select-country {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .post-job-card-body {
        padding: 12px;
    }
    
    .form-label {
        font-size: 0.85rem;
    }
    
    .btn-submit-post {
        font-size: 0.85rem;
        padding: 10px;
    }
}