* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
}

.zmzp-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.zmzp-header {
    background: #52c41a;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.zmzp-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zmzp-header h1 {
    font-size: 24px;
    margin: 0;
}

.zmzp-header h1 a {
    color: #fff;
    text-decoration: none;
}

.zmzp-header p {
    font-size: 14px;
    opacity: 0.9;
    margin: 5px 0 0;
}

.zmzp-header .header-right {
    display: flex;
    gap: 20px;
}

.zmzp-header .header-right a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.zmzp-header .header-right a:hover {
    opacity: 0.8;
}

.zmzp-header .header-nav {
    display: flex;
    gap: 25px;
    margin-left: auto;
}

.zmzp-header .header-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.zmzp-header .header-nav a:hover {
    opacity: 0.9;
    border-bottom-color: rgba(255,255,255,0.5);
}

.zmzp-hero {
    background: #52c41a;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.zmzp-hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.zmzp-hero p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.search-form {
    display: flex;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.search-form input,
.search-form select,
.search-form button {
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.search-form input,
.search-form select {
    flex: 1;
    background: rgba(255,255,255,0.95);
    color: #333;
}

.search-form button {
    background: #fff;
    color: #52c41a;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.search-form button:hover {
    background: #f0f0f0;
}

.zmzp-featured,
.zmzp-latest,
.zmzp-square-preview {
    padding: 40px 0;
}

.zmzp-featured h3,
.zmzp-latest h3,
.zmzp-square-preview h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.job-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.job-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.job-card.featured {
    border-left: 4px solid #ff6b6b;
}

.job-card .job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.job-card h4 {
    font-size: 18px;
    margin: 0;
    flex: 1;
}

.job-card h4 a {
    color: #2c3e50;
    text-decoration: none;
}

.job-card h4 a:hover {
    color: #52c41a;
}

.job-card .salary {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    margin-left: 10px;
}

.job-card .job-info {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.job-card .job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #999;
}

.job-card .featured-badge {
    background: #52c41a;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.square-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.square-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.square-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.square-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.square-card .square-info {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.square-card .square-tags {
    margin-bottom: 12px;
}

.square-card .tag {
    display: inline-block;
    background: #f0f2f5;
    color: #666;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 5px;
}

.square-card .square-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #999;
}

.square-card .contact-btn {
    background: #52c41a;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s;
}

.square-card .contact-btn:hover {
    background: #43a017;
}

.view-more {
    text-align: center;
    margin-top: 30px;
}

.view-more a {
    color: #52c41a;
    text-decoration: none;
    font-size: 16px;
}

.view-more a:hover {
    text-decoration: underline;
}

.zmzp-footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: auto;
}

.zmzp-jobs-page {
    padding: 40px 0;
}

.jobs-content {
    display: flex;
    flex-direction: column;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #999;
}

.zmzp-job-detail {
    padding: 40px 0;
}

.job-detail-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.job-detail-card .job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.job-detail-card h2 {
    font-size: 28px;
    color: #2c3e50;
    margin: 0;
}

.job-detail-card .salary {
    font-size: 24px;
    color: #ff6b6b;
    font-weight: 600;
}

.job-detail-card .job-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.job-detail-card .info-item {
    display: flex;
    flex-direction: column;
}

.job-detail-card .info-item .label {
    font-size: 13px;
    color: #999;
    margin-bottom: 5px;
}

.job-detail-card .info-item .value {
    font-size: 16px;
    color: #333;
}

.job-detail-card .job-description {
    margin-bottom: 30px;
}

.job-detail-card .job-description h3,
.job-detail-card .job-tags h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.job-detail-card .job-description p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.job-detail-card .job-tags .tag {
    display: inline-block;
    background: #e6f7ff;
    color: #1890ff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 14px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.job-detail-card .apply-section {
    background: #fff;
    padding: 24px 30px;
    border-radius: 24px;
    margin: 30px auto 0;
    box-shadow: 0 4px 20px rgba(82, 196, 26, 0.15);
    border: 1px solid rgba(82, 196, 26, 0.2);
    display: flex;
    justify-content: center;
    width: fit-content;
}

.job-detail-card .apply-section > button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 52px;
    background: linear-gradient(135deg, #52c41a 0%, #43a017 100%);
    color: #fff;
    border: none;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(82, 196, 26, 0.4);
}

.job-detail-card .apply-section > button:hover {
    background: linear-gradient(135deg, #43a017 0%, #388e13 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(82, 196, 26, 0.5);
}

.job-detail-card .apply-section > button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(82, 196, 26, 0.3);
}



.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.apply-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 24px 24px 0 0;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.apply-modal.modal-show {
    transform: translateY(0);
    opacity: 1;
}

.apply-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: #fff;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.apply-modal .modal-header .header-icon {
    display: none;
}

.apply-modal .modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    flex: 1;
    text-align: center;
    padding-left: 0;
}

.apply-modal .close-modal-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 28px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.3s;
    line-height: 1;
}

.apply-modal .close-modal-btn:hover {
    color: #666;
}

.apply-modal .modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    max-height: calc(85vh - 160px);
}

.apply-modal .modal-body .form-section {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 0;
    box-shadow: none;
}

.apply-modal .modal-body .form-group-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0 12px;
    margin-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.apply-modal .modal-body .form-group-header:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.apply-modal .modal-body .group-icon {
    font-size: 16px;
}

.apply-modal .modal-body .group-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.apply-modal .modal-body .form-row {
    margin-bottom: 16px;
}

.apply-modal .modal-body .form-row:last-child {
    margin-bottom: 0;
}

.apply-modal .modal-body .form-label-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.apply-modal .modal-body label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.apply-modal .modal-body .required-mark {
    color: #ff4757;
    font-weight: bold;
    font-size: 14px;
}

.apply-modal .modal-body .input-hint {
    font-size: 12px;
    color: #999;
    font-weight: normal;
    margin-left: 8px;
}

.apply-modal .modal-body .input-group {
    position: relative;
}

.apply-modal .modal-body .input-group .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #999;
    transition: color 0.3s;
    z-index: 1;
}

.apply-modal .modal-body .input-group .select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #999;
    pointer-events: none;
    z-index: 1;
}

.apply-modal .modal-body .input-group .input-suffix {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #52c41a;
    pointer-events: auto;
    cursor: pointer;
    z-index: 1;
}

.apply-modal .modal-body input[type="text"],
.apply-modal .modal-body input[type="number"],
.apply-modal .modal-body input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fff;
    transition: all 0.3s;
    box-sizing: border-box;
    font-family: inherit;
    height: 44px;
    line-height: 44px;
}

.apply-modal .modal-body select.birth-year-select {
    width: 100%;
    padding: 0 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fff;
    transition: all 0.3s;
    box-sizing: border-box;
    height: 44px;
    line-height: 44px;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.apply-modal .modal-body input::placeholder {
    color: #aaa;
    font-size: 14px;
}

.apply-modal .modal-body input:focus,
.apply-modal .modal-body select.birth-year-select:focus {
    outline: none;
    border-color: #52c41a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(82, 196, 26, 0.1);
}

.apply-modal .modal-body .input-group:focus-within .input-icon {
    color: #52c41a;
}

.apply-modal .modal-body .gender-options {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.apply-modal .modal-body .gender-options label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 14px;
    color: #555;
}

.apply-modal .modal-body .gender-options input[type="radio"] {
    margin: 0;
    accent-color: #52c41a;
    width: 14px;
    height: 14px;
}

.apply-modal .modal-body .gender-options label:has(input:checked) {
    border-color: #52c41a;
    background: rgba(82, 196, 26, 0.08);
    color: #52c41a;
    font-weight: 600;
}

.apply-modal .modal-footer {
    padding: 20px 24px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
}

.apply-modal .modal-footer #submit-apply {
    width: 100%;
    background: #52c41a;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    height: 52px;
    line-height: 52px;
}

.apply-modal .modal-footer #submit-apply:hover {
    background: #43a017;
}

@media (max-width: 768px) {
    .apply-modal {
        max-height: 90vh;
        border-radius: 20px 20px 0 0;
    }
    
    .apply-modal .modal-header {
        padding: 20px;
    }
    
    .apply-modal .modal-header h3 {
        font-size: 18px;
    }
    
    .apply-modal .modal-body {
        padding: 20px;
        max-height: 60vh;
        overflow-y: auto;
    }
    
    .apply-modal .modal-body .form-row {
        margin-bottom: 20px;
    }
    
    .apply-modal .modal-body input[type="text"],
    .apply-modal .modal-body input[type="number"],
    .apply-modal .modal-body input[type="tel"] {
        padding: 14px 14px 14px 40px;
        font-size: 14px;
    }
    
    .apply-modal .modal-body .input-group .input-icon {
        font-size: 16px;
        left: 12px;
    }
    
    .apply-modal .modal-body .gender-options {
        gap: 10px;
    }
    
    .apply-modal .modal-body .gender-options label {
        padding: 14px 10px;
        font-size: 14px;
    }
    
    .apply-modal .modal-footer {
        padding: 20px 20px;
        border-radius: 0 0 16px 16px;
        position: sticky;
        bottom: 0;
        background: #fafbfc;
    }
    
    .apply-modal .modal-footer #submit-apply {
        padding: 15px;
        font-size: 15px;
    }
}

.zmzp-square-page {
    padding: 40px 0;
}

.zmzp-square-page .page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.zmzp-square-page h2 {
    font-size: 24px;
    color: #2c3e50;
}

.zmzp-square-page #post-square-btn {
    background: #52c41a;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.zmzp-square-page #post-square-btn:hover {
    background: #43a017;
}



.zmzp-square-page #post-square-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.zmzp-square-page #post-square-form h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.zmzp-center {
    padding: 40px 0;
}

.zmzp-center .container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.center-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 80px;
    height: fit-content;
}

.center-sidebar .user-info {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.center-sidebar .user-info h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.center-sidebar .user-info .avatar {
    margin-bottom: 10px;
}

.center-sidebar .user-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.center-sidebar .verified-badge {
    background: #52c41a;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
}

.center-sidebar .unverified-badge {
    background: #faad14;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
}

.center-sidebar .center-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.center-sidebar .center-nav a {
    display: block;
    padding: 12px 15px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: background 0.3s;
}

.center-sidebar .center-nav a:hover,
.center-sidebar .center-nav a.active {
    background: #52c41a;
    color: #fff;
}

.center-content {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.center-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.center-content button {
    background: #52c41a;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.center-content button:hover {
    background: #43a017;
}

.center-content form {
    margin-bottom: 20px;
}

.center-content .form-group {
    margin-bottom: 15px;
}

.center-content .form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #666;
}

.center-content .form-group input,
.center-content .form-group select,
.center-content .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.center-content .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.center-content form button[type="submit"] {
    margin-top: 20px;
    width: auto;
}

.center-content .data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.center-content .data-table th,
.center-content .data-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.center-content .data-table th {
    background: #f9fafb;
    color: #666;
    font-weight: 600;
}

.center-content .data-table a {
    color: #52c41a;
    text-decoration: none;
}

.center-content .data-table a:hover {
    text-decoration: underline;
}

.center-content .status-select {
    padding: 6px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 13px;
}

.message-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.conversation-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.conversation-item:hover {
    background: #f0f2f5;
}

.conversation-item .avatar {
    margin-right: 15px;
}

.conversation-item .conv-info {
    flex: 1;
}

.conversation-item .conv-info h4 {
    font-size: 14px;
    margin: 0 0 5px;
    color: #333;
}

.conversation-item .conv-info p {
    font-size: 13px;
    color: #999;
    margin: 0 0 5px;
}

.conversation-item .conv-time {
    font-size: 12px;
    color: #bbb;
}

.conversation-item .unread-count {
    background: #ff6b6b;
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 10px;
}

#message-detail {
    margin-top: 20px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
}

#message-detail h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #2c3e50;
}

#message-content {
    min-height: 200px;
    margin-bottom: 15px;
    padding: 10px;
    background: #fff;
    border-radius: 6px;
}

.message-item {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 6px;
}

.message-item.me {
    background: #52c41a;
    color: #fff;
    text-align: right;
}

.message-item.other {
    background: #f0f2f5;
    color: #333;
}

.message-input {
    display: flex;
    gap: 10px;
}

.message-input input {
    flex: 1;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.message-input button {
    margin-bottom: 0;
}

.zmzp-auth {
    padding: 60px 0;
}

.auth-card {
    max-width: 450px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.auth-card h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.auth-card .form-group {
    margin-bottom: 20px;
}

.auth-card .form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #666;
}

.auth-card .form-group input,
.auth-card .form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
}

.auth-card button[type="submit"] {
    width: 100%;
    background: #52c41a;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.auth-card button[type="submit"]:hover {
    background: #43a017;
}

.auth-card .auth-link {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.auth-card .auth-link a {
    color: #52c41a;
    text-decoration: none;
}

.auth-card .auth-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .search-form {
        flex-direction: column;
    }

    .job-list {
        grid-template-columns: 1fr;
    }

    .square-list {
        grid-template-columns: 1fr;
    }

    .zmzp-jobs-page .container,
    .zmzp-center .container {
        grid-template-columns: 1fr;
    }

    .jobs-sidebar,
    .center-sidebar {
        position: static;
    }

    .job-detail-card .job-header {
        flex-direction: column;
    }

    .job-detail-card .job-header h2 {
        margin-bottom: 10px;
    }

    .job-detail-card .job-info {
        grid-template-columns: 1fr;
    }
}
