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

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: #F7FAFC;
    color: #2D3748;
    min-height: 100vh;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.header {
    background: white;
    padding: 10px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.back-btn {
    background: none;
    border: none;
    color: #4A5568;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-btn:hover {
    background: #EDF2F7;
}

.header-title {
    font-size: 18px;
    font-weight: 700;
    color: #2D3748;
}

.search-btn {
    background: none;
    border: none;
    color: #4A5568;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: #EDF2F7;
}

.job-type-tabs {
    display: flex;
    gap: 0;
    margin-top: 8px;
}

.job-type-tab {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #718096;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.job-type-tab.active {
    color: #8B5DBA;
    border-bottom-color: #8B5DBA;
}

.main-content {
    padding: 20px;
    padding-bottom: 100px;
}

.filter-section {
    /* background: white; */
    /* border-radius: 16px; */
    /* padding: 20px; */
    margin-bottom: 20px;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.05); */
}

.search-container {
    background: #F7FAFC;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 16px;
}

.basic-search {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    color: #4A5568;
    font-family: 'Pretendard', sans-serif;
    min-width: 0;
    height: 44px;
    box-sizing: border-box;
}

.search-input:focus {
    outline: none;
    border-color: #8B5DBA;
}

.search-input::placeholder {
    color: #A0AEC0;
}

.search-btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #8B5DBA 0%, #6B46C1 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.search-btn-main:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 93, 186, 0.3);
}

.detail-search-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* gap: 2px; */
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #4A5568;
    cursor: pointer;
    transition: all 0.3s ease;
}

.detail-search-toggle .material-symbols-outlined {
    line-height: 1;
}

.detail-search-toggle:hover {
    background: #EDF2F7;
    border-color: #8B5DBA;
}

.detail-search-toggle.active {
    background: #8B5DBA;
    border-color: #8B5DBA;
    color: white;
}

.detail-search-content {
    display: none;
    animation: slideDown 0.3s ease;
}

.detail-search-content.show {
    display: block;
}

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

.filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.filter-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.filter-row:last-child {
    margin-bottom: 0;
}

.filter-select {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 14px;
    background: white;
    color: #4A5568;
    font-family: 'Pretendard', sans-serif;
}

.filter-select:focus {
    outline: none;
    border-color: #8B5DBA;
}

.stats-section {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-item {
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    background: #F7FAFC;
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #8B5DBA;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: #718096;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-item {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.job-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

.job-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.job-tag {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.job-tag.urgent {
    background: #FED7D7;
    color: #C53030;
}

.job-tag.new {
    background: #C6F6D5;
    color: #22543D;
}

.job-tag.featured {
    background: #FEEBC8;
    color: #C05621;
}

.job-salary {
    font-size: 14px;
    font-weight: 700;
    color: #8B5DBA;
    white-space: nowrap;
}

.job-title {
    font-size: 16px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 8px;
    line-height: 1.4;
}

.job-company {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.company-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #8B5DBA 0%, #6B46C1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.company-info {
    flex: 1;
}

.company-name {
    font-size: 14px;
    font-weight: 600;
    color: #4A5568;
}

.company-location {
    font-size: 12px;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 4px;
}

.job-description {
    font-size: 14px;
    color: #718096;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.requirement-tag {
    background: #EDF2F7;
    color: #4A5568;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
}

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

.job-date {
    font-size: 12px;
    color: #A0AEC0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.job-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.job-like {
    background: none;
    border: 1px solid #E2E8F0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #718096;
}

.job-like:hover {
    border-color: #8B5DBA;
    color: #8B5DBA;
}

.job-like.active {
    background: #8B5DBA;
    border-color: #8B5DBA;
    color: white;
}

.fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B5DBA 0%, #6B46C1 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(139, 93, 186, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 93, 186, 0.6);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.job-tag.urgent {
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .search-container {
        padding: 0;
    }
    
    .basic-search {
        gap: 6px;
    }
    
    .search-input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .search-btn-main {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .detail-search-toggle {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .filter-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
}

/* QNA 리스트 페이지 스타일 */
.qna-category-tabs {
    position: sticky;
    top: 57px;
    background: white;
    margin: 0;
    padding: 0 20px;
    display: flex;
    gap: 15px;
    overflow-x: auto;
    border-bottom: 1px solid #E2E8F0;
    justify-content: space-between;
    z-index: 999;
}

.qna-category-tab {
    padding: 16px 0;
    font-size: 14px;
    font-weight: 600;
    color: #718096;
    border: none;
    background: none;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.qna-category-tab.active {
    color: #8B5DBA;
    border-bottom-color: #8B5DBA;
}

.qna-category-tabs::-webkit-scrollbar {
    display: none;
}

.qna-question-list {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.qna-question-item {
    padding: 20px;
    border-bottom: 1px solid #F1F5F9;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.qna-question-item:last-child {
    border-bottom: none;
}

.qna-question-item:hover {
    background: #F8FAFC;
}

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

.qna-question-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qna-category-tag {
    background: #EDF2F7;
    color: #4A5568;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.qna-category-tag.daily {
    background: linear-gradient(135deg, #8B5DBA 0%, #6B46C1 100%);
    color: white;
}

.qna-category-tag.urgent {
    background: #FED7D7;
    color: #C53030;
}

.qna-category-tag.hair {
    background: #E6FFFA;
    color: #285E61;
}

.qna-category-tag.color {
    background: #FFF5E6;
    color: #C05621;
}

.qna-category-tag.perm {
    background: #EBF4FF;
    color: #3182CE;
}

.qna-category-tag.style {
    background: #F3E8FF;
    color: #6B21A8;
}

.qna-question-title {
    font-size: 16px;
    font-weight: 600;
    color: #2D3748;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.qna-question-preview {
    font-size: 14px;
    color: #718096;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.qna-question-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #A0AEC0;
}

.qna-question-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qna-author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5DBA 0%, #6B46C1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.qna-question-stats {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qna-stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.qna-stat .material-symbols-outlined {
    font-size: 16px;
}

.qna-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #718096;
}

.qna-empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
    color: #CBD5E0;
}

.qna-empty-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #4A5568;
}

.qna-empty-desc {
    font-size: 14px;
    line-height: 1.5;
}

.qna-question-item-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.qna-question-item-visible {
    opacity: 1;
    transform: translateY(0);
}

.qna-question-item-hidden {
    display: none;
}

/* QNA 검색 팝업 */
.qna-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.qna-search-overlay-show {
    opacity: 1;
    visibility: visible;
}

.qna-search-popup {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 60vh;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.qna-search-overlay-show .qna-search-popup {
    transform: translateY(0);
}

.qna-search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #E2E8F0;
}

.qna-search-title {
    font-size: 18px;
    font-weight: 700;
    color: #2D3748;
    margin: 0;
}

.qna-search-close {
    background: none;
    border: none;
    color: #718096;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qna-search-close:hover {
    background: #EDF2F7;
    color: #2D3748;
}

.qna-search-close .material-symbols-outlined {
    font-size: 24px;
}

.qna-search-content {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.qna-search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.qna-search-input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    color: #2D3748;
    transition: all 0.3s ease;
    outline: none;
}

.qna-search-input:focus {
    border-color: #8B5DBA;
    box-shadow: 0 0 0 3px rgba(139, 93, 186, 0.1);
}

.qna-search-input::placeholder {
    color: #A0AEC0;
}

.qna-search-submit {
    background: linear-gradient(135deg, #8B5DBA 0%, #6B46C1 100%);
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 93, 186, 0.3);
}

.qna-search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 93, 186, 0.4);
}

.qna-search-submit:active {
    transform: translateY(0);
}

.qna-search-submit .material-symbols-outlined {
    font-size: 24px;
}

.qna-search-suggestions {
    margin-top: 8px;
}

.qna-suggestion-title {
    font-size: 14px;
    font-weight: 600;
    color: #718096;
    margin-bottom: 12px;
}

.qna-suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.qna-suggestion-tag {
    background: #F7FAFC;
    color: #4A5568;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
}

.qna-suggestion-tag:hover {
    background: linear-gradient(135deg, #8B5DBA 0%, #6B46C1 100%);
    color: white;
    border-color: #8B5DBA;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 93, 186, 0.2);
}

@media (max-width: 480px) {
    .main-content {
        padding: 16px;
        padding-bottom: 80px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .job-item {
        padding: 16px;
    }
    
    .job-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .job-title {
        font-size: 15px;
    }
    
    .job-requirements {
        margin-bottom: 8px;
    }
    
    .fab {
        width: 56px;
        height: 56px;
        bottom: 16px;
        right: 16px;
    }

    .qna-question-item {
        padding: 16px;
    }

    .qna-question-title {
        font-size: 15px;
    }

    .qna-question-preview {
        font-size: 13px;
    }

    .qna-search-popup {
        width: 95%;
        max-height: 70vh;
    }

    .qna-search-header {
        padding: 16px 20px;
    }

    .qna-search-content {
        padding: 20px;
    }

    .qna-search-input-wrapper {
        margin-bottom: 20px;
    }

    .qna-suggestion-tag {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* RECIPE 리스트 페이지 스타일 */
.recipe-category-tabs {
    background: white;
    margin: 0;
    padding: 0 20px;
    display: flex;
    gap: 15px;
    overflow-x: auto;
    border-bottom: 1px solid #E2E8F0;
    justify-content: space-between;
}

.recipe-category-tab {
    padding: 16px 0;
    font-size: 14px;
    font-weight: 600;
    color: #718096;
    border: none;
    background: none;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.recipe-category-tab.active {
    color: #8B5DBA;
    border-bottom-color: #8B5DBA;
}

.recipe-category-tabs::-webkit-scrollbar {
    display: none;
}

.recipe-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recipe-item {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.recipe-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

.recipe-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.recipe-tag {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.recipe-tag.new {
    background: #C6F6D5;
    color: #22543D;
}

.recipe-tag.popular {
    background: #FEEBC8;
    color: #C05621;
}

.recipe-date {
    font-size: 12px;
    color: #A0AEC0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.recipe-date .material-symbols-outlined {
    font-size: 14px;
}

.recipe-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.recipe-title {
    font-size: 16px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 8px;
    line-height: 1.4;
}

.recipe-preview {
    font-size: 14px;
    color: #718096;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recipe-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #A0AEC0;
}

.recipe-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.recipe-author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5DBA 0%, #6B46C1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.recipe-stats {
    display: flex;
    align-items: center;
    gap: 12px;
}

.recipe-stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.recipe-stat .material-symbols-outlined {
    font-size: 16px;
}

.recipe-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #718096;
}

.recipe-empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
    color: #CBD5E0;
}

.recipe-empty-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #4A5568;
}

.recipe-empty-desc {
    font-size: 14px;
    line-height: 1.5;
}

.recipe-item-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.recipe-item-visible {
    opacity: 1;
    transform: translateY(0);
}

.recipe-item-hidden {
    display: none;
}

/* RECIPE 검색 팝업 */
.recipe-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.recipe-search-overlay-show {
    opacity: 1;
    visibility: visible;
}

.recipe-search-popup {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 60vh;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.recipe-search-overlay-show .recipe-search-popup {
    transform: translateY(0);
}

.recipe-search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #E2E8F0;
}

.recipe-search-title {
    font-size: 18px;
    font-weight: 700;
    color: #2D3748;
    margin: 0;
}

.recipe-search-close {
    background: none;
    border: none;
    color: #718096;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.recipe-search-close:hover {
    background: #EDF2F7;
    color: #2D3748;
}

.recipe-search-close .material-symbols-outlined {
    font-size: 24px;
}

.recipe-search-content {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.recipe-search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.recipe-search-input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Pretendard', sans-serif;
    color: #2D3748;
    transition: all 0.3s ease;
    outline: none;
}

.recipe-search-input:focus {
    border-color: #8B5DBA;
    box-shadow: 0 0 0 3px rgba(139, 93, 186, 0.1);
}

.recipe-search-input::placeholder {
    color: #A0AEC0;
}

.recipe-search-submit {
    background: linear-gradient(135deg, #8B5DBA 0%, #6B46C1 100%);
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 93, 186, 0.3);
}

.recipe-search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 93, 186, 0.4);
}

.recipe-search-submit:active {
    transform: translateY(0);
}

.recipe-search-submit .material-symbols-outlined {
    font-size: 24px;
}

.recipe-search-suggestions {
    margin-top: 8px;
}

.recipe-suggestion-title {
    font-size: 14px;
    font-weight: 600;
    color: #718096;
    margin-bottom: 12px;
}

.recipe-suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.recipe-suggestion-tag {
    background: #F7FAFC;
    color: #4A5568;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
}

.recipe-suggestion-tag:hover {
    background: linear-gradient(135deg, #8B5DBA 0%, #6B46C1 100%);
    color: white;
    border-color: #8B5DBA;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 93, 186, 0.2);
}

@media (max-width: 480px) {
    .recipe-item {
        padding: 16px;
    }

    .recipe-title {
        font-size: 15px;
    }

    .recipe-search-popup {
        width: 95%;
        max-height: 70vh;
    }

    .recipe-search-header {
        padding: 16px 20px;
    }

    .recipe-search-content {
        padding: 20px;
    }

    .recipe-search-input-wrapper {
        margin-bottom: 20px;
    }

    .recipe-suggestion-tag {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* ============================================
   JOB DETAIL PAGE STYLES
   ============================================ */

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn {
    background: none;
    border: none;
    color: #4A5568;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: #EDF2F7;
}
.action-btn.active {
    color: #8B5DBA;
}

/* Main content for job-detail */
.job-detail-page .main-content {
    padding: 0 0 100px;
}

/* Job header section */
.job-header-section {
    background: white;
    padding: 24px 20px;
    border-bottom: 8px solid #F7FAFC;
}

.job-header-section .job-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.job-header-section .job-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.job-header-section .job-tag.urgent {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
    color: white;
}

.job-header-section .job-tag.new {
    background: linear-gradient(135deg, #48BB78 0%, #38A169 100%);
    color: white;
}

.job-header-section .job-tag.featured {
    background: linear-gradient(135deg, #FFD93D 0%, #F6C23E 100%);
    color: white;
}

.job-header-section .job-title {
    font-size: 22px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 16px;
    line-height: 1.4;
}

.job-header-section .job-company {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E2E8F0;
}

.job-header-section .company-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5DBA 0%, #6B46C1 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.job-header-section .company-info {
    flex: 1;
}

.job-header-section .company-name {
    font-size: 18px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 6px;
}

.job-header-section .company-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #718096;
}
.job-salary-date-wrapper{
    display:flex;
    align-items: center;
    justify-content: space-between;
}
.job-header-section .job-salary {
    font-size: 20px;
    font-weight: 700;
    color: #8B5DBA;
}

.job-header-section .job-date {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #718096;
}

/* Job info section */
.job-info-section {
    background: white;
    padding: 24px 20px;
    border-bottom: 8px solid #F7FAFC;
}

.job-info-section .section-title,
.shop-description-section .section-title{
    font-size: 18px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 16px;
}

.job-info-section .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.job-info-section .info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.job-info-section .info-label {
    font-size: 12px;
    color: #718096;
    font-weight: 500;
}

.job-info-section .info-value {
    font-size: 16px;
    color: #2D3748;
    font-weight: 600;
}

/* Job description section */
.job-detail-page .job-description {
    background: white;
    padding: 24px 20px;
    border-bottom: 8px solid #F7FAFC;
}

.job-detail-page .job-description .section-title {
    font-size: 18px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 16px;
}

.job-detail-page .job-description .description-content {
    font-size: 14px;
    line-height: 1.8;
    color: #4A5568;
    white-space: pre-line;
}

/* Rating section */
.job-rating-section {
    background: white;
    padding: 24px 20px;
    border-bottom: 8px solid #F7FAFC;
}

.job-rating-section .section-title {
    font-size: 18px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 16px;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.rating-label {
    min-width: 70px;
    font-size: 14px;
    font-weight: 600;
    color: #2D3748;
}

.rating-bar-container {
    flex: 1;
    height: 8px;
    background: #E2E8F0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.rating-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.rating-bar.positive {
    background: linear-gradient(90deg, #48BB78 0%, #38A169 100%);
}

.rating-bar.neutral {
    background: linear-gradient(90deg, #718096 0%, #4A5568 100%);
}

.rating-bar.negative {
    background: linear-gradient(90deg, #718096 0%, #4A5568 100%);
}

.rating-count {
    min-width: 40px;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    color: #4A5568;
}

.rating-total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E2E8F0;
    text-align: right;
    font-size: 14px;
    color: #718096;
}

.rating-total strong {
    color: #8B5DBA;
    font-weight: 700;
}

/* Job requirements section */
.job-detail-page .job-requirements {
    background: white;
    padding: 24px 20px;
    border-bottom: 8px solid #F7FAFC;
}

.job-detail-page .job-requirements .section-title {
    font-size: 18px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 16px;
}

.job-detail-page .job-requirements .requirements-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-detail-page .job-requirements .requirement-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #EDF2F7;
    color: #4A5568;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Job details section */
.job-details {
    background: white;
    padding: 24px 20px;
    border-bottom: 8px solid #F7FAFC;
}

.job-details .section-title {
    font-size: 18px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 16px;
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-icon {
    color: #8B5DBA;
    flex-shrink: 0;
}

.detail-content {
    flex: 1;
}

.detail-label {
    font-size: 14px;
    color: #718096;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 14px;
    color: #2D3748;
    font-weight: 500;
}

/* Comments section */
.comments-section {
    background: white;
    padding: 24px 20px;
    border-bottom: 8px solid #F7FAFC;
}

.comments-section .section-title {
    font-size: 18px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 16px;
}

.comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.comments-count {
    font-size: 16px;
    font-weight: 700;
    color: #2D3748;
}

.comments-count .count {
    color: #8B5DBA;
}

.comment-form {
    margin-bottom: 24px;
    padding: 16px;
    background: #F7FAFC;
    border-radius: 12px;
}

.comment-input {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: #2D3748;
    resize: vertical;
    margin-bottom: 12px;
    transition: border-color 0.3s ease;
}

.comment-input:focus {
    outline: none;
    border-color: #8B5DBA;
}

.comment-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.comment-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-btn.cancel {
    background: #E2E8F0;
    color: #4A5568;
}

.comment-btn.cancel:hover {
    background: #CBD5E0;
}

.comment-btn.submit {
    background: linear-gradient(135deg, #8B5DBA 0%, #6B46C1 100%);
    color: white;
}

.comment-btn.submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 93, 186, 0.3);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comment-item {
    padding: 16px;
    background: #FAFAFA;
    border-radius: 12px;
    border-left: 3px solid #8B5DBA;
}

.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5DBA 0%, #6B46C1 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.comment-author-name {
    font-size: 14px;
    font-weight: 600;
    color: #2D3748;
}

.comment-date {
    font-size: 12px;
    color: #718096;
}

.comment-content {
    font-size: 14px;
    line-height: 1.6;
    color: #4A5568;
    /* white-space: pre-line; */
}

.comment-actions {
    margin-top: 12px;
    display: flex;
    gap: 12px;
}

.comment-action-btn {
    background: none;
    border: none;
    color: #718096;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.comment-action-btn:hover {
    color: #8B5DBA;
}

.no-comments {
    text-align: center;
    padding: 40px 20px;
    color: #718096;
}

.no-comments .material-symbols-outlined {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.3;
}

/* Job footer (fixed bottom) */
.job-detail-page .job-footer {
    background: white;
    padding: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    z-index: 90;
}

.footer-actions {
    display: flex;
    width: 100%;
    gap: 12px;
    align-items: stretch;
}

.action-button {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.action-button.like {
    /* flex: 0 0 auto; */
    min-width: 120px;
    background: white;
    color: #4A5568;
    border: 2px solid #E2E8F0;
}

.action-button.like:hover {
    border-color: #8B5DBA;
    background: #FAF5FF;
}

.action-button.like.active {
    background: #FED7D7;
    color: #C53030;
    border-color: #FEB2B2;
}

.action-button.primary {
    background: linear-gradient(135deg, #8B5DBA 0%, #6B46C1 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(139, 93, 186, 0.2);
}

.action-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 93, 186, 0.4);
}

/* Responsive adjustments for job-detail */
@media (max-width: 768px) {
    .job-info-section .info-grid {
        /* grid-template-columns: repeat(2, 1fr); */
    }
}

/* ============================================
   SHOP PROFILE PAGE STYLES
   ============================================ */

.shop-profile-page .main-content {
    padding: 0 0 100px;
}

.shop-header-card {
    background: white;
    padding: 24px 20px;
    border-bottom: 8px solid #F7FAFC;
}

.shop-profile-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.shop-logo-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5DBA 0%, #6B46C1 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
}

.shop-main-info {
    flex: 1;
}

.shop-name {
    font-size: 22px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 6px;
}

.shop-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #718096;
    margin-bottom: 8px;
}

.shop-stats {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #718096;
}

.shop-stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.shop-description-section {
    background: white;
    padding: 24px 20px;
    border-bottom: 8px solid #F7FAFC;
}

.shop-description {
    font-size: 14px;
    line-height: 1.8;
    color: #4A5568;
    white-space: pre-line;
}

.shop-info-section {
    background: white;
    padding: 24px 20px;
    border-bottom: 8px solid #F7FAFC;
}

.shop-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.shop-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.shop-info-icon {
    color: #8B5DBA;
    flex-shrink: 0;
}

.shop-info-content {
    flex: 1;
}

.shop-info-label {
    font-size: 13px;
    color: #718096;
    margin-bottom: 4px;
}

.shop-info-value {
    font-size: 15px;
    color: #2D3748;
    font-weight: 500;
}

.shop-jobs-section {
    background: white;
    padding: 24px 20px;
    border-bottom: 8px solid #F7FAFC;
}

.shop-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-job-card {
    background: #F7FAFC;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
}

.shop-job-card:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.shop-job-title {
    font-size: 15px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 8px;
}

.shop-job-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #718096;
}

.shop-job-salary {
    font-weight: 600;
    color: #8B5DBA;
}

.shop-contact-footer {
    background: white;
    padding: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    z-index: 90;
}

.contact-btn {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(135deg, #8B5DBA 0%, #6B46C1 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 93, 186, 0.2);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 93, 186, 0.4);
}

/* ============================================
   SALON INQUIRY PAGE STYLES
   ============================================ */

.salon-inquiry-page .main-content {
    padding: 72px 0 40px;
}

.inquiry-salon-card {
    background: white;
    padding: 20px;
    margin-bottom: 8px;
    border-bottom: 8px solid #F7FAFC;
}

.inquiry-salon-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #8B5DBA;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.inquiry-salon-title {
    font-size: 18px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 8px;
}

.inquiry-salon-price {
    font-size: 20px;
    font-weight: 700;
    color: #8B5DBA;
    margin-bottom: 12px;
}

.inquiry-salon-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #718096;
}

.inquiry-salon-location .material-symbols-outlined {
    font-size: 16px;
}

.inquiry-form-section {
    background: white;
    padding: 24px 20px;
}

.inquiry-form {
    margin-top: 20px;
}

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

.inquiry-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 8px;
}

.inquiry-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    color: #2D3748;
    transition: all 0.3s ease;
}

.inquiry-input:focus {
    outline: none;
    border-color: #8B5DBA;
    box-shadow: 0 0 0 3px rgba(139, 93, 186, 0.1);
}

.inquiry-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    color: #2D3748;
    resize: vertical;
    font-family: inherit;
    transition: all 0.3s ease;
}

.inquiry-textarea:focus {
    outline: none;
    border-color: #8B5DBA;
    box-shadow: 0 0 0 3px rgba(139, 93, 186, 0.1);
}

.inquiry-char-count {
    text-align: right;
    font-size: 12px;
    color: #718096;
    margin-top: 4px;
}

.inquiry-privacy {
    background: #F7FAFC;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.inquiry-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2D3748;
    cursor: pointer;
}

.inquiry-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.inquiry-privacy-text {
    font-size: 12px;
    color: #718096;
    line-height: 1.6;
    margin-top: 8px;
    padding-left: 26px;
}

.inquiry-submit-btn {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #8B5DBA 0%, #6B46C1 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 93, 186, 0.2);
}

.inquiry-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 93, 186, 0.4);
}

.inquiry-submit-btn .material-symbols-outlined {
    font-size: 20px;
}

/* ============================================
   COMMENTS SECTION STYLES (for salon-detail)
   ============================================ */

.comments-section {
    background: white;
    padding: 24px 20px;
    border-bottom: 8px solid #F7FAFC;
    margin-bottom: 80px;
}

.comments-header {
    font-size: 14px;
    color: #718096;
    margin-bottom: 20px;
}

.comments-count {
    font-weight: 700;
    color: #8B5DBA;
}

.comment-form {
    margin-bottom: 24px;
}

.comment-input {
    width: 100%;
    min-height: 100px;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    color: #2D3748;
    resize: vertical;
    font-family: inherit;
    transition: all 0.3s ease;
}

.comment-input:focus {
    outline: none;
    border-color: #8B5DBA;
    box-shadow: 0 0 0 3px rgba(139, 93, 186, 0.1);
}

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

.comment-cancel-btn,
.comment-submit-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-cancel-btn {
    background: #F7FAFC;
    color: #4A5568;
}

.comment-cancel-btn:hover {
    background: #E2E8F0;
}

.comment-submit-btn {
    background: linear-gradient(135deg, #8B5DBA 0%, #6B46C1 100%);
    color: white;
}

.comment-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 93, 186, 0.3);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comment-item {
    padding: 16px;
    background: #F7FAFC;
    border-radius: 8px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.comment-author {
    font-size: 14px;
    font-weight: 600;
    color: #2D3748;
}

.comment-date {
    font-size: 12px;
    color: #718096;
}

.comment-content {
    font-size: 14px;
    line-height: 1.6;
    color: #4A5568;
    /* white-space: pre-wrap; */
}

.no-comments {
    text-align: center;
    padding: 40px 20px;
    color: #718096;
    font-size: 14px;
}

/* ============================================
   RECIPE SORT SELECT
   ============================================ */

.recipe-sort-select {
    padding: 6px 12px;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    font-size: 14px;
    color: #2D3748;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recipe-sort-select:hover {
    border-color: #8B5DBA;
}

.recipe-sort-select:focus {
    outline: none;
    border-color: #8B5DBA;
    box-shadow: 0 0 0 3px rgba(139, 93, 186, 0.1);
}
