/* ========================================
   구인구직 KEYWORK 브랜드 스타일 - 새로 작성
   ======================================== */


/* ========================================
   구인구직 알림 섹션 - 모던 KEYWORK 디자인
   ======================================== */
.job-alerts-section {
    padding: 24px;
    background: #FAFBFC;
}

.job-alerts-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #F1F3F4;
}

.job-alerts-section .section-header > span {
    font-size: 24px;
    font-weight: 700;
    color: #1428A0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alerts-count {
    background: linear-gradient(135deg, #1428A0 0%, #1B3BB8 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(20, 40, 160, 0.2);
}

.alerts-filter select {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    background: white;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.alerts-filter select:hover {
    border-color: #1428A0;
    box-shadow: 0 4px 12px rgba(20, 40, 160, 0.1);
}

.alerts-filter select:focus {
    outline: none;
    border-color: #1428A0;
    box-shadow: 0 0 0 4px rgba(20, 40, 160, 0.1);
}

/* 알림 통계 카드 - 모던 그라데이션 디자인 */
.alerts-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFB 100%);
    padding: 24px 20px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #1428A0 0%, #1B3BB8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* 알림 리스트 - 모던 카드 스타일 */
.job-alerts-list {
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.alert-item {
    background: white;
    padding: 20px 24px;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    margin-bottom: 0;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.alert-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E5E7EB 0%, #E5E7EB 100%);
    transition: all 0.3s ease;
}

.alert-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #1428A0;
}

.alert-item:hover::before {
    background: linear-gradient(90deg, #1428A0 0%, #1B3BB8 100%);
}

.alert-item.new {
    border-color: #1428A0;
    box-shadow: 0 4px 16px rgba(20, 40, 160, 0.12);
}

.alert-item.new::before {
    background: linear-gradient(90deg, #1428A0 0%, #1B3BB8 100%);
}

.alert-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.alert-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.alert-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
    flex: 1;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-time {
    color: #9CA3AF;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    background: #F3F4F6;
    padding: 4px 8px;
    border-radius: 8px;
}

.new-badge {
    background: linear-gradient(135deg, #1428A0 0%, #1B3BB8 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(20, 40, 160, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.alert-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 8px 0;
}

.alert-tag {
    background: #F3F4F6;
    color: #6B7280;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
}

.alert-tag.location {
    background: #EBF8FF;
    color: #1E40AF;
}

.alert-tag.salary {
    background: #F0FDF4;
    color: #166534;
}

.alert-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #F3F4F6;
}

.alert-btn {
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 100px;
}

.alert-btn.primary {
    background: linear-gradient(135deg, #1428A0 0%, #1B3BB8 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(20, 40, 160, 0.2);
}

.alert-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(20, 40, 160, 0.3);
}

.alert-btn.secondary {
    background: #F3F4F6;
    color: #6B7280;
    border: 1px solid #E5E7EB;
}

.alert-btn.secondary:hover {
    background: #E5E7EB;
    color: #374151;
    transform: translateY(-1px);
}

/* 알림이 없을 때 - 모던 빈 상태 디자인 */
.no-alerts-message,
.loading-alerts,
.alerts-error {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFB 100%);
    padding: 60px 32px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    margin: 24px 0;
}

.no-alerts-icon,
.loading-spinner,
.error-icon {
    font-size: 64px;
    margin-bottom: 24px;
    opacity: 0.8;
    filter: grayscale(20%);
}

.loading-spinner {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 로딩 팁 스타일 */
.loading-tip {
    margin-top: 16px;
    font-size: 12px;
    color: #9CA3AF;
    text-align: center;
    opacity: 0.8;
    line-height: 1.4;
}

.naverband-loading-tip {
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    opacity: 0.9;
    line-height: 1.4;
}

.no-alerts-message h3,
.loading-alerts h3,
.alerts-error h3 {
    color: #1F2937;
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.no-alerts-message p,
.loading-alerts p,
.alerts-error p {
    color: #6B7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.create-application-btn,
.retry-btn {
    margin-top: 24px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #1428A0 0%, #1B3BB8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(20, 40, 160, 0.2);
}

.create-application-btn:hover,
.retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(20, 40, 160, 0.3);
}

/* ========================================
   구인구직 상세 모달 - 세련된 디자인
   ======================================== */
#job-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s;
}

#job-detail-modal .jobs-modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s;
}

.jobs-modal #job-detail-modal .modal-header,
#job-detail-modal.jobs-modal .modal-header {
    background: #1428A0 !important;
    color: white !important;
    padding: 24px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.jobs-modal #job-detail-modal .modal-header h3,
#job-detail-modal.jobs-modal .modal-header h3 {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    color: white !important;
}

#job-detail-modal .modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

#job-detail-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

#job-detail-modal .modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(80vh - 80px);
}

#job-detail-modal .detail-section {
    margin-bottom: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

#job-detail-modal .detail-section:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

/* 연락하기 버튼 */
.contact-btn {
    background: #1428A0;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-btn:hover {
    background: #1e3a8a;
}

#job-detail-modal .detail-section h4 {
    color: #1428A0;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

#job-detail-modal .detail-section p {
    margin: 0 0 12px 0;
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
}

#job-detail-modal .detail-section p:last-child {
    margin-bottom: 0;
}

#job-detail-modal .detail-section p strong {
    color: #1f2937;
    font-weight: 600;
    display: inline-block;
    min-width: 80px;
}

/* 애니메이션 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .alerts-stats {
        grid-template-columns: 1fr;
    }
    
    .alert-details {
        grid-template-columns: 1fr;
    }
    
    .alert-item {
        flex-direction: column;
    }
    
    #job-detail-modal .jobs-modal-content {
        width: 95%;
        max-height: 90vh;
    }
}

/* 네이버밴드 로딩 애니메이션 - KEYWORK 브랜드 적용 */
.naver-band-loading {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 48px 32px;
    margin: 24px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.naver-band-loading .loading-animation {
    animation: bounce 1.5s infinite ease-in-out;
    font-size: 40px;
    margin-bottom: 20px;
}

.naver-band-loading h3 {
    color: var(--brand-primary);
    font-size: 20px;
    margin: 16px 0 12px 0;
    font-weight: 700;
}

.naver-band-loading p {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 12px 0;
    line-height: 1.5;
}

.loading-subtitle {
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 600;
    margin: 16px 0 12px 0;
}

.loading-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background: var(--brand-primary);
    border-radius: 50%;
    display: inline-block;
    animation: loading-wave 1.4s linear infinite;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-10px) scale(1.1);
    }
    60% {
        transform: translateY(-5px) scale(1.05);
    }
}

@keyframes loading-wave {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        opacity: 0.5;
    }
    20% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* 구인구직 메인 섹션 스타일링 - KEYWORK 브랜드 적용 */
.jobs-main-section {
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 120px;
    background: var(--bg-secondary);
    min-height: calc(100vh - 120px);
}

/* 게시판 탭 - KEYWORK 브랜드 스타일 적용 */
.board-tabs {
    display: flex;
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    padding: 8px;
    margin-bottom: 24px;
    gap: 8px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.board-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    min-height: 56px;
}

.board-tab:hover {
    background: var(--brand-light);
    color: var(--brand-primary);
    transform: translateY(-2px);
}

.board-tab.active {
    background: #E5E7EB;
    color: var(--text-primary);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.board-tab .tab-icon {
    font-size: 20px;
}

.board-tab .tab-text {
    font-size: 15px;
    font-weight: inherit;
}

/* 섹션 헤더 스타일 */
.jobs-list-section {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

/* 구직 목록 영역 */
.jobs-list {
    padding: 24px;
}

/* 게시글 아이템 스타일 - KEYWORK 브랜드 적용 */
.job-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.job-item:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 8px 25px rgba(20, 40, 160, 0.15), 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

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

.job-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.job-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.job-badge.badge-worker {
    background: var(--brand-light);
    color: var(--brand-primary);
}

.job-badge.badge-tech {
    background: #f0f9ff;
    color: var(--tech-blue);
}

.job-badge.badge-company {
    background: #f0fdf4;
    color: var(--company-green);
}

.job-badge.badge-safety {
    background: #fffbeb;
    color: var(--worker-orange);
}

.job-badge.badge-room {
    background: #f0fdf4;
    color: var(--company-green);
}

.job-badge.badge-no-room {
    background: #fef2f2;
    color: var(--safety-red);
}

.job-time {
    font-size: 12px;
    color: var(--text-secondary);
}

.job-main {
    margin-bottom: 16px;
}

.job-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.job-company {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

.job-detail {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.job-introduction, .job-description {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.5;
    background: var(--bg-hover);
    padding: 12px;
    border-radius: 8px;
    margin-top: 8px;
}

.job-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 16px;
}

.contact-btn, .detail-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.contact-btn {
    background: var(--brand-primary);
    color: white;
    border: 2px solid var(--brand-primary);
}

.contact-btn:hover {
    background: var(--brand-secondary);
    border-color: var(--brand-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 40, 160, 0.3);
}

.detail-btn {
    background: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

.detail-btn:hover {
    background: var(--brand-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 40, 160, 0.3);
}

/* 빈 상태 메시지 - KEYWORK 브랜드 스타일 */
.no-jobs-message {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin: 24px 0;
    box-shadow: var(--box-shadow);
}

.no-jobs-message .no-jobs-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.no-jobs-message h3 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.no-jobs-message p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* 권한 관련 스타일 */
.board-tab.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .jobs-main-section {
        padding: 16px;
        padding-bottom: 100px;
    }
    
    /* 상단 탭 가로 배치 */
    .board-tabs {
        display: flex;
        flex-direction: row;
        gap: 2px;
        padding: 4px;
        overflow-x: auto;
        margin-bottom: 16px;
    }
    
    .board-tab {
        flex: 1;
        min-width: 65px;
        padding: 8px 4px;
        font-size: 11px;
        min-height: 44px;
        gap: 2px;
        white-space: nowrap;
        flex-direction: column;
        border-radius: 6px;
    }
    
    .board-tab .tab-text {
        font-size: 10px;
        display: block;
        line-height: 1.2;
    }
    
    .board-tab .tab-icon {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    /* 구인공고 리스트 컴팩트하게 */
    .job-item {
        padding: 12px;
        margin-bottom: 12px;
        border-radius: 8px;
    }
    
    .job-header {
        margin-bottom: 8px;
    }
    
    .job-title {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .job-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .job-detail {
        font-size: 12px;
        padding: 4px 0;
    }
    
    .job-actions {
        flex-direction: row;
        gap: 8px;
        justify-content: space-between;
    }
    
    .job-actions button {
        flex: 1;
        padding: 8px 12px;
        font-size: 12px;
    }
    
    /* 알림 모바일 대응 - 모던 반응형 디자인 */
    .job-alerts-section {
        padding: 16px 12px;
        background: #FAFBFC;
    }
    
    .job-alerts-section .section-header {
        padding: 20px 16px;
        margin-bottom: 24px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }
    
    .job-alerts-section .section-header > span {
        font-size: 20px;
        gap: 8px;
    }
    
    .alerts-count {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 16px;
    }
    
    .alerts-stats {
        display: flex;
        gap: 12px;
        margin: 16px 0 20px 0;
        overflow-x: auto;
        padding: 0 4px;
    }
    
    .stat-card {
        flex: 1;
        min-width: 100px;
        padding: 16px 12px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }
    
    .stat-number {
        font-size: 24px;
        margin-bottom: 4px;
    }
    
    .stat-label {
        font-size: 12px;
        line-height: 1.3;
    }
    
    /* 알림 아이템 - 모바일 최적화 카드 */
    .job-alerts-list {
        gap: 12px;
        padding: 0 4px;
    }
    
    .alert-item {
        padding: 16px;
        border-radius: 12px;
        margin-bottom: 0;
    }
    
    .alert-item::before {
        height: 3px;
    }
    
    .alert-content {
        gap: 8px;
    }
    
    .alert-header {
        gap: 12px;
        align-items: flex-start;
    }
    
    .alert-header h4 {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .alert-time {
        font-size: 10px;
        padding: 3px 6px;
        border-radius: 6px;
    }
    
    .new-badge {
        padding: 3px 8px;
        font-size: 9px;
        border-radius: 10px;
        margin-left: 6px;
    }
    
    .alert-meta {
        gap: 8px;
        margin: 6px 0;
    }
    
    .alert-tag {
        padding: 3px 6px;
        font-size: 11px;
        border-radius: 6px;
    }
    
    .alert-actions {
        gap: 8px;
        margin-top: 12px;
        padding-top: 12px;
        flex-direction: row;
    }
    
    .alert-btn {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 10px;
        min-width: 80px;
        flex: 1;
    }
    
    /* 빈 상태 모바일 최적화 */
    .no-alerts-message,
    .loading-alerts,
    .alerts-error {
        padding: 40px 20px;
        margin: 16px 0;
        border-radius: 12px;
    }
    
    .no-alerts-icon,
    .loading-spinner,
    .error-icon {
        font-size: 48px;
        margin-bottom: 16px;
    }
    
    .no-alerts-message h3,
    .loading-alerts h3,
    .alerts-error h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .no-alerts-message p,
    .loading-alerts p,
    .alerts-error p {
        font-size: 14px;
    }
    
    .create-application-btn,
    .retry-btn {
        margin-top: 20px;
        padding: 12px 24px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    /* 모달 모바일 대응 */
    #job-detail-modal .jobs-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    #job-detail-modal .modal-header {
        padding: 16px;
    }
    
    #job-detail-modal .modal-body {
        padding: 16px;
    }
}

/* 스마트 매칭 시스템 - PC/모바일 반응형 디자인 */
.matching-notification-message {
    background: white !important;
    border-radius: 20px !important;
    margin: 20px !important;
    padding: 32px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    text-align: center !important;
    position: relative !important;
    overflow: visible !important;
    border: none !important;
}

/* 상단 아이콘 - 숨김 */
.matching-notification-message .notification-icon {
    display: none !important;
}

/* 제목 스타일 */
.matching-notification-message h3 {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin: 0 0 12px 0 !important;
    color: #1428A0 !important;
    text-shadow: none !important;
}

/* 오늘의 통계 배지 */
.matching-notification-message div[style*="background: rgba(255, 255, 255, 0.2)"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    margin: 12px auto !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: white !important;
    border: none !important;
    display: inline-block !important;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3) !important;
}

/* 설명 텍스트 */
.matching-notification-message p {
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin: 12px 0 !important;
    color: #4B5563 !important;
    opacity: 1 !important;
}

/* 기능 리스트 - 가로 배치 */
.matching-notification-message .notification-features {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin: 20px 0 !important;
    justify-content: center !important;
}

.matching-notification-message .notification-features div[style*="background: rgba(255, 255, 255, 0.15)"] {
    background: #F3F4F6 !important;
    padding: 10px 16px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #4B5563 !important;
    border: 1px solid #E5E7EB !important;
    flex: 0 0 auto !important;
}

/* CTA 버튼 - PC 최적화 */
.matching-notification-message button[style*="background: #1428A0"],
.btn-cta,
.btn-cta-job-request,
.btn-cta-job-posting {
    background: #1428A0 !important;
    color: white !important;
    border: none !important;
    padding: 16px 32px !important;
    border-radius: 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    width: auto !important;
    max-width: 300px !important;
    margin-top: 16px !important;
    box-shadow: 0 4px 15px rgba(20, 40, 160, 0.25) !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

/* 네이버밴드 준비중 배지 */
.matching-notification-message div[style*="display: inline-block"] div[style*="background: rgba(255, 255, 255, 0.15)"] {
    background: #F3F4F6 !important;
    padding: 10px 16px !important;
    border-radius: 20px !important;
    border: 1px solid #E5E7EB !important;
}

/* 모바일 반응형 - 가로 전체 화면 활용 */
@media (max-width: 768px) {
    .jobs-main-section {
        padding: 12px 4px !important;
    }
    
    .jobs-list-section {
        margin-bottom: 24px !important;
    }
    
    .jobs-list {
        padding: 0 !important;
    }
    
    .matching-notification-message {
        margin: 0 !important;
        border-radius: 12px !important;
        padding: 24px 16px !important;
    }
    
    .matching-notification-message .notification-icon {
        font-size: 36px !important;
    }
    
    .matching-notification-message h3 {
        font-size: 20px !important;
    }
    
    .matching-notification-message p {
        font-size: 14px !important;
    }
    
    .matching-notification-message div[style*="background: rgba(255, 255, 255, 0.2)"] {
        font-size: 14px !important;
        padding: 8px 16px !important;
    }
    
    .matching-notification-message .notification-features div {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }
    
    .btn-cta,
    .btn-cta-job-request,
    .btn-cta-job-posting {
        width: 100% !important;
        max-width: none !important;
        padding: 14px 24px !important;
        font-size: 15px !important;
    }
}

/* 작은 모바일 화면 대응 */
@media (max-width: 380px) {
    .matching-notification-message {
        padding: 16px 12px !important;
    }
    
    .matching-notification-message .notification-icon {
        font-size: 32px !important;
    }
    
    .matching-notification-message h3 {
        font-size: 18px !important;
    }
    
    .matching-notification-message p {
        font-size: 13px !important;
    }
    
    .matching-notification-message div[style*="background: rgba(255, 255, 255, 0.2)"] {
        font-size: 13px !important;
        padding: 6px 12px !important;
    }
    
    .matching-notification-message .notification-features div {
        font-size: 11px !important;
        padding: 5px 10px !important;
    }
    
    .btn-cta,
    .btn-cta-job-request,
    .btn-cta-job-posting {
        font-size: 14px !important;
        padding: 12px 20px !important;
    }
}

/* 구직신청 카드 테마 */
.card-job-request {
    border-top: 3px solid #3B82F6 !important;
}

.card-job-request .notification-icon {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-job-request h3 {
    color: #1E40AF !important;
}

.card-job-request div[style*="background: rgba(255, 255, 255, 0.2)"] {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%) !important;
}

.btn-cta-job-request {
    background: #3B82F6 !important;
    color: white !important;
    border: none !important;
    padding: 16px 32px !important;
    border-radius: 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    width: auto !important;
    max-width: 300px !important;
    margin-top: 16px !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3) !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.btn-cta-job-request:hover {
    background: #2563EB !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4) !important;
}

/* 구인공고 카드 테마 */
.card-job-posting {
    border-top: 4px solid #10B981 !important;
}

.card-job-posting .notification-icon {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-job-posting h3 {
    color: #047857 !important;
}

.card-job-posting div[style*="background: rgba(255, 255, 255, 0.2)"] {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
}

.btn-cta-job-posting {
    background: #10B981 !important;
    color: white !important;
    border: none !important;
    padding: 16px 32px !important;
    border-radius: 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    width: auto !important;
    max-width: 300px !important;
    margin-top: 16px !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.btn-cta-job-posting:hover {
    background: #059669 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4) !important;
}

/* ========================================
   구인구직 모달 스타일
   ======================================== */

/* 구인구직 모달 기본 컨테이너 */
.jobs-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
}

.jobs-modal[style*="block"] {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 구인구직 모달 컨텐츠 */
.jobs-modal-content {
    position: relative;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    overflow: hidden;
    animation: modalFadeIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* 구인구직 모달 헤더 */
.jobs-modal-header {
    padding: 32px 32px 24px;
    background: #1428A0;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.jobs-modal-header h3 {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin: 0 0 8px !important;
    color: white !important;
    padding-right: 0 !important;
}

.jobs-modal-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

/* 구인구직 모달 바디 */
.jobs-modal-body {
    padding: 24px 32px 32px;
    max-height: calc(90vh - 150px);
    overflow-y: auto;
    flex: 1;
}

/* 구인구직 모달 푸터 */
.jobs-modal-footer {
    display: flex;
    gap: 12px;
    padding: 20px 32px 32px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
    background: white;
}

/* 구인구직 모달 닫기 버튼 */
.jobs-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    background: none;
    border: none;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
}

.jobs-modal-close:hover {
    background: rgba(0,0,0,0.1);
    color: #333;
    transform: scale(1.1);
}

/* 구인구직 버튼 스타일 */
.jobs-modal-btn {
    flex: 1;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    color: var(--text-primary);
}

.jobs-modal-btn.secondary {
    border: 2px solid #e1e5e9;
    background: white;
    color: var(--text-primary);
}

.jobs-modal-btn.secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.jobs-modal-btn.primary {
    background: var(--brand-primary);
    color: white;
    border: 2px solid var(--brand-primary);
}

.jobs-modal-btn.primary:hover {
    background: var(--brand-secondary);
    border-color: var(--brand-secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20, 40, 160, 0.3);
}

/* 폼 관련 스타일 */
.jobs-modal .form-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}

.jobs-modal .section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.jobs-modal .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.jobs-modal .form-group:last-child {
    margin-bottom: 0;
}

.jobs-modal .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.jobs-modal .form-group label.required::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}

/* 구인구직 모달 전용 폼 스타일 */
.jobs-modal input[type="text"],
.jobs-modal input[type="tel"],
.jobs-modal input[type="email"],
.jobs-modal input[type="number"],
.jobs-modal select,
.jobs-modal textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s ease;
    background: white;
    color: var(--text-primary);
    box-sizing: border-box;
}

.jobs-modal input[type="text"]:focus,
.jobs-modal input[type="tel"]:focus,
.jobs-modal input[type="email"]:focus,
.jobs-modal input[type="number"]:focus,
.jobs-modal select:focus,
.jobs-modal textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(20, 40, 160, 0.1);
}

.jobs-modal textarea {
    resize: vertical;
    min-height: 100px;
}

/* 읽기 전용 필드 */
.jobs-modal input[readonly] {
    background-color: #f8f9fa;
    color: #495057;
    border-color: #28a745;
    cursor: not-allowed;
}

/* 라디오 버튼 그룹 스타일링 */
.jobs-modal .radio-group {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.jobs-modal .radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: white;
}

.jobs-modal .radio-option:hover {
    border-color: var(--brand-primary);
    background: rgba(20, 40, 160, 0.02);
}

.jobs-modal .radio-option input[type="radio"] {
    width: auto;
    margin: 0;
}

.jobs-modal .radio-option input[type="radio"]:checked + .radio-text {
    color: var(--brand-primary);
    font-weight: 600;
}

.jobs-modal .radio-option:has(input:checked) {
    border-color: var(--brand-primary);
    background: rgba(20, 40, 160, 0.05);
}

.jobs-modal .radio-text {
    font-size: 14px;
    color: var(--text-primary);
}

/* 지역 선택 버튼 스타일링 */
.jobs-modal .region-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
}

.jobs-modal .region-btn {
    padding: 8px 16px;
    background: white;
    border: 2px solid #e1e5e9;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    outline: none;
}

.jobs-modal .region-btn:hover {
    border-color: var(--brand-primary);
    background: rgba(20, 40, 160, 0.05);
    color: var(--brand-primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(20, 40, 160, 0.15);
}

.jobs-modal .region-btn.selected {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: white;
    font-weight: 600;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20, 40, 160, 0.3);
}

.jobs-modal .region-btn.selected:hover {
    background: var(--brand-secondary);
    border-color: var(--brand-secondary);
    color: white;
}

/* 폼 도움말 텍스트 */
.jobs-modal .form-help {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.jobs-modal .required {
    color: #dc3545;
    font-weight: bold;
}

/* ========================================
   네이버밴드 상세보기 버튼 스타일
   ======================================== */
.band-link-btn {
    width: 100%;
    padding: 14px 20px !important;
    background: linear-gradient(135deg, #03C75A 0%, #02B351 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(3, 199, 90, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.band-link-btn:hover {
    background: linear-gradient(135deg, #02B351 0%, #028A42 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(3, 199, 90, 0.3) !important;
}

.band-link-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(3, 199, 90, 0.2) !important;
}

/* ========================================
   네이버밴드 새로고침 버튼 스타일
   ======================================== */
.refresh-band-btn {
    min-width: 40px !important;
    padding: 8px 12px !important;
    margin-right: 12px !important;
    background: var(--brand-primary) !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.refresh-band-btn:hover {
    background: var(--brand-secondary) !important;
    transform: rotate(180deg) !important;
}