:root {
    /* Color Palette: Blush Pink & Champagne Gold */
    --primary-pink: #D8A7B1; /* 메인 블러쉬 핑크 - 화사하고 부드러움 */
    --primary-dark: #BA8A93; /* 깊이감을 주는 다크 핑크 */
    --accent-gold: #Cfb997; /* 고급스러운 샴페인 골드 */
    --bg-pink-tint: #FFF5F7; /* 아주 연한 핑크빛 배경 */
    --bg-card: rgba(255, 255, 255, 0.95); /* 카드 배경 */
    --text-main: #5A4D50; /* 부드러운 차콜 브라운 텍스트 */
    --text-sub: #9C8E90;
    --border-soft: #F0E1E4; /* 핑크빛이 도는 연한 테두리 */
    --shadow-soft: 0 15px 35px -5px rgba(216, 167, 177, 0.15); /* 핑크빛 그림자 */

    /* Kakao Colors */
    --kakao-yellow: #FEE500;
    --kakao-brown: #3C1E1E;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif KR', serif;
    background-color: var(--bg-pink-tint);
    /* 배경: 더 화사해진 핑크빛 수채화 효과 */
    background-image:
        radial-gradient(at 10% 20%, rgba(255, 200, 210, 0.25) 0px, transparent 50%),
        radial-gradient(at 90% 10%, rgba(255, 230, 180, 0.15) 0px, transparent 40%),
        radial-gradient(at 50% 80%, rgba(255, 210, 220, 0.2) 0px, transparent 50%);
    color: var(--text-main);
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    line-height: 1.6;
}

/* 컨테이너 디자인 */
.container {
    width: 100%;
    max-width: 1000px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

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

/* 헤더 영역 */
.main-header {
    text-align: center;
    margin-bottom: 50px;
}

.brand-logo {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-main);
    margin: 0 0 20px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--text-main), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-logo::before, .brand-logo::after {
    content: '✧';
    color: var(--primary-pink);
    margin: 0 15px;
    font-size: 14px;
}

.subtitle {
    color: var(--text-sub);
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
}

/* 카드 공통 스타일 */
.card {
    background: var(--bg-card);
    border-radius: 24px; /* 더 둥글게 */
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 대관 시간 섹션 */
.venue-card {
    padding: 35px 40px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 3px solid var(--primary-pink); /* 상단 핑크 포인트 */
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.venue-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.venue-guide {
    margin: -6px 0 2px;
    padding: 12px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FFF9FA, #FFFCFC);
    border: 1px solid var(--border-soft);
    color: var(--text-sub);
    font-size: 13px;
    line-height: 1.65;
    text-align: center;
    max-width: 560px;
}

.venue-guide i {
    color: var(--primary-pink);
    margin-right: 6px;
}

.input-wrapper label {
    font-size: 14px;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.input-with-unit {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.input-with-unit input {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    width: 160px;
    text-align: center;
    border: none;
    border-bottom: 2px solid var(--border-soft);
    padding: 10px;
    background: transparent;
    color: var(--primary-dark); /* 입력 숫자 핑크톤 */
    font-weight: 500;
    transition: all 0.3s ease;
}

/* number input 증감 버튼 제거 */
.input-with-unit input[type="number"]::-webkit-outer-spin-button,
.input-with-unit input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-with-unit input[type="number"] {
    -moz-appearance: textfield;
}

.input-with-unit input:focus {
    outline: none;
    border-bottom-color: var(--primary-pink);
}

.input-with-unit input::placeholder {
    color: #EEDEED;
}

.input-with-unit .unit {
    font-size: 14px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-left: 10px;
    position: absolute;
    right: 0;
    bottom: 18px;
}

/* 결과 메시지 스타일링 */
.result-message {
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 50px;
    background: #FFFBFB;
    color: var(--text-sub);
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(216, 167, 177, 0.05);
}

.result-message.info {
    border: 1px solid var(--border-soft);
    color: var(--primary-dark);
}

.result-message.info i {
    color: var(--primary-pink);
    margin-right: 6px;
}

.result-message.success {
    background: rgba(76, 175, 80, 0.05);
    color: #2E7D32;
    border: 1px solid rgba(76, 175, 80, 0.15);
}

.result-message.warning {
    background: rgba(255, 152, 0, 0.05);
    color: #F57C00;
    border: 1px solid rgba(255, 152, 0, 0.15);
}

/* 프로그램 리스트 섹션 */
.section-header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 25px;
    padding: 0 15px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--text-main);
    margin: 0;
    font-style: italic;
    position: relative;
}

/* 총 소요시간 뱃지 - 핑크 강조 */
.total-duration-badge {
    background: white;
    padding: 10px 24px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.total-duration-badge span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    font-weight: 600;
}

.total-duration-badge strong {
    font-size: 26px;
    color: var(--primary-pink);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.total-duration-badge small {
    color: var(--text-sub);
}

/* 테이블 스타일링 */
.table-container {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.program-table {
    width: 100%;
    border-collapse: collapse;
}

.program-table th {
    background: #FFF9FA; /* 헤더에 아주 연한 핑크 틴트 */
    padding: 20px 15px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-soft);
}

.program-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #F8F0F2;
    vertical-align: middle;
}

.program-table tr:hover {
    background-color: #FFFBFB; /* 호버시 아주 연한 핑크 화이트 */
}

/* 테이블 내부 인풋 */
.program-table input[type="text"],
.program-table textarea,
.program-table input[type="number"] {
    width: 100%;
    border: 1px solid var(--border-soft);
    background: #FFFEFE;
    padding: 12px 14px;
    border-radius: 10px;
    font-family: 'Noto Serif KR', serif;
    font-size: 14px;
    color: var(--text-main);
    transition: all 0.3s;
}

/* 테이블 내부 number input 증감 버튼 제거 */
.program-table input[type="number"]::-webkit-outer-spin-button,
.program-table input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.program-table input[type="number"] {
    -moz-appearance: textfield;
}

.program-table textarea {
    resize: none;
    height: 48px;
    line-height: 1.4;
}

.program-table input:focus,
.program-table textarea:focus {
    background: white;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 4px rgba(216, 167, 177, 0.1); /* 핑크빛 포커스 링 */
    outline: none;
}

/* 순번 스타일 */
.program-table td:first-child {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent-gold);
    font-weight: 500;
    font-size: 18px;
}

/* 버튼 스타일링 */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn {
    border: none;
    cursor: pointer;
    border-radius: 10px;
    padding: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-move {
    background: #FDF5F6;
    color: var(--primary-dark);
    width: 34px;
    height: 34px;
}

.btn-move:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(216, 167, 177, 0.3);
}

.btn-delete {
    background: transparent;
    color: #E0E0E0;
    width: 34px;
    height: 34px;
}

.btn-delete:hover {
    color: #FF8A80;
    background: #FFF0F0;
}

.btn-add-main {
    width: 100%;
    padding: 20px;
    /* 화사한 핑크 그라데이션 */
    background: linear-gradient(135deg, var(--primary-pink), #E8B4BC);
    color: white;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(216, 167, 177, 0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-add-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(216, 167, 177, 0.5);
    background: linear-gradient(135deg, #E8B4BC, var(--primary-pink));
}

.btn-add-main i {
    margin-right: 10px;
    font-size: 18px;
}

.add-program-menu-container {
    position: relative;
}

.add-program-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 12px);
    z-index: 20;
}

.add-program-menu-panel {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(216, 167, 177, 0.18);
    padding: 14px;
    backdrop-filter: blur(10px);
}

.add-program-menu-label {
    margin: 4px 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.add-program-menu-item {
    width: 100%;
    border: 1px solid transparent;
    background: linear-gradient(135deg, #FFF9FA, #FFFEFE);
    color: var(--text-main);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    transition: all 0.25s ease;
    cursor: pointer;
}

.add-program-menu-item + .add-program-menu-item {
    margin-top: 10px;
}

.add-program-menu-item:hover {
    transform: translateY(-1px);
    border-color: rgba(216, 167, 177, 0.25);
    box-shadow: 0 10px 20px rgba(216, 167, 177, 0.12);
}

.add-program-menu-item-custom {
    background: linear-gradient(135deg, #fffdf8, #ffffff);
}

.add-program-menu-title {
    font-size: 15px;
    font-weight: 600;
}

.add-program-menu-meta {
    font-size: 12px;
    color: var(--text-sub);
    white-space: nowrap;
}

.btn-save-image {
    width: 100%;
    padding: 20px;
    /* 샴페인 골드 그라데이션 */
    background: linear-gradient(135deg, var(--accent-gold), #D9C6A3);
    color: white;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(207, 185, 151, 0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-save-image:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(207, 185, 151, 0.5);
    background: linear-gradient(135deg, #D9C6A3, var(--accent-gold));
}

.btn-save-image:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-save-image i {
    margin-right: 10px;
    font-size: 18px;
}

/* 메인 하단 사회자 시그니처 */
.host-signature {
    margin-top: 36px;
}

.host-signature-card {
    width: 100%;
    background: var(--bg-pink-tint);
    border: 1px solid rgba(207, 185, 151, 0.18);
    border-radius: 24px;
    padding: 20px 24px;
    box-shadow: 0 8px 20px rgba(90, 77, 80, 0.06);
}

.host-signature-inner {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 2px 12px;
}

.host-signature-logo {
    width: 110px;
    height: auto;
    display: block;
    filter: grayscale(100%) contrast(115%);
}

.host-signature-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 0.2px;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    body {
        padding: 24px 14px 40px;
    }

    .container { padding: 0 4px; }
    .main-header { margin-bottom: 30px; }
    .brand-logo { font-size: 34px; letter-spacing: 1px; }
    .subtitle { font-size: 12.5px; line-height: 1.5; margin-top: 10px; }
    .venue-card { padding: 22px 16px; margin-bottom: 24px; }
    .venue-guide { font-size: 12px; padding: 10px 12px; }
    .input-with-unit input { width: 130px; font-size: 34px; }
    .result-message { border-radius: 18px; padding: 12px 14px; font-size: 14px; }
    .section-header { justify-content: center; padding: 0; margin-bottom: 16px; }
    .total-duration-badge { width: 100%; justify-content: center; }
    .drag-hint { font-size: 13px; align-items: flex-start; padding: 10px 12px; }

    .program-table { display: block; width: 100%; }
    .program-table thead { display: none; }
    .program-table tbody { display: block; width: 100%; }
    .program-table tr {
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr) 56px 72px;
        grid-template-areas:
            "order title duration delete"
            "content content content content";
        gap: 8px;
        background: white;
        margin-bottom: 12px;
        border: 1px solid var(--border-soft);
        border-radius: 16px;
        padding: 12px;
        box-shadow: 0 5px 15px rgba(216, 167, 177, 0.08);
    }

    .program-table td {
        display: block;
        padding: 0;
        border: none;
        width: 100%;
        text-align: left;
        min-width: 0;
    }

    .program-table td:nth-child(1) { grid-area: order; }
    .program-table td:nth-child(2) { grid-area: title; }
    .program-table td:nth-child(3) { grid-area: content; }
    .program-table td:nth-child(4) { grid-area: duration; }
    .program-table td:nth-child(5) { grid-area: delete; }

    .program-table td:nth-child(2)::before,
    .program-table td:nth-child(3)::before,
    .program-table td:nth-child(4)::before,
    .program-table td:nth-child(5)::before {
        display: none;
    }

    .program-table td:first-child {
        text-align: left;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
        min-height: 40px;
    }

    .program-table td:nth-child(2),
    .program-table td:nth-child(4),
    .program-table td:nth-child(5) {
        display: flex;
        align-items: stretch;
    }

    .program-table input[type="text"],
    .program-table textarea,
    .program-table input[type="number"] {
        padding: 9px 10px;
        font-size: 13px;
    }

    .program-table input[type="text"],
    .program-table input[type="number"] {
        height: 40px;
    }

    .program-table input[type="number"] {
        text-align: center;
    }

    .program-table textarea {
        min-height: 40px;
        height: 40px;
    }

    .btn-delete {
        width: 100%;
        height: 40px;
        padding: 0;
        font-size: 13px;
        border: 1px solid #f3d5da;
        border-radius: 10px;
        color: #c96a79;
        background: #fff8f9;
    }

    .btn-group { justify-content: flex-end; margin-top: 15px;}

    .btn-add-main,
    .btn-save-image {
        font-size: 15px;
        padding: 16px;
        border-radius: 14px;
    }

    .add-program-menu {
        top: calc(100% + 10px);
    }

    .add-program-menu-panel {
        border-radius: 16px;
        padding: 12px;
    }

    .add-program-menu-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        padding: 13px 14px;
    }

    .add-program-menu-meta {
        white-space: normal;
    }

    .host-signature {
        margin-top: 28px;
    }

    .host-signature-card {
        padding: 16px;
        border-radius: 16px;
    }

    .host-signature-logo {
        width: 96px;
    }

    .host-signature-name {
        font-size: 15px;
    }
}

/* 4. 핵심 CTA 섹션 (가장 중요) */
.cta-section {
    margin-top: 60px;
    animation: fadeInUp 1s ease-out;
}

.cta-card {
    background: linear-gradient(135deg, #ffffff 0%, #fffbfb 100%);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(216, 167, 177, 0.25); /* 깊은 그림자 */
    border: 1px solid white;
    position: relative;
    overflow: hidden;
}

/* 배경 장식 */
.cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 6px;
    background: linear-gradient(90deg, var(--primary-pink), var(--accent-gold));
}

.cta-card h3 {
    font-size: 22px;
    margin: 0 0 15px 0;
    color: var(--text-main);
    font-weight: 600;
}

.cta-card p {
    font-size: 15px;
    color: var(--text-sub);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-card p strong {
    color: var(--primary-dark);
    text-decoration: underline;
    text-decoration-color: var(--primary-pink);
    text-underline-offset: 4px;
}

/* 카카오톡 빅 버튼 */
.btn-kakao-big {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--kakao-yellow);
    color: var(--kakao-brown);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(254, 229, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.btn-kakao-big i {
    font-size: 22px;
    margin-right: 10px;
}

.btn-kakao-big:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(254, 229, 0, 0.5);
    background-color: #FFE812;
}

/* 드래그 힌트 */
.drag-hint {
    background: linear-gradient(135deg, #FFF9FA, #FFFBFB);
    border-left: 4px solid var(--primary-pink);
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-sub);
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(216, 167, 177, 0.08);
}

.drag-hint i {
    color: var(--accent-gold);
    font-size: 16px;
}

/* 드래그앤드롭 스타일 */
.draggable-row {
    cursor: move;
    transition: all 0.3s ease;
}

.draggable-row.dragging {
    opacity: 0.4;
    background-color: #FFF9FA;
}

.draggable-row.drag-over {
    border-top: 3px solid var(--primary-pink);
    background-color: #FFFBFB;
}

.drag-handle {
    cursor: grab;
    user-select: none;
}

.drag-handle:active {
    cursor: grabbing;
}

.draggable-row:hover {
    background-color: #FFFBFB;
    box-shadow: 0 2px 8px rgba(216, 167, 177, 0.1);
}

/* 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background: white;
    margin: 5% auto;
    width: 90%;
    max-width: 500px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease;
}

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

.modal-header {
    padding: 30px 30px 20px 30px;
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 24px;
    color: var(--primary-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-sub);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--bg-pink-tint);
    color: var(--primary-dark);
}

.modal-body {
    padding: 30px;
}

.modal-description {
    color: var(--text-sub);
    font-size: 14px;
    margin-bottom: 25px;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--accent-gold);
    font-size: 16px;
}

.modal-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Noto Serif KR', serif;
    color: var(--text-main);
    transition: all 0.3s ease;
    background: #FFFEFE;
}

.modal-input:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 4px rgba(216, 167, 177, 0.1);
    background: white;
}

.modal-input::placeholder {
    color: #EEDEED;
}

.modal-footer {
    padding: 20px 30px 30px 30px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-cancel-modal {
    padding: 12px 24px;
    background: #F8F9FA;
    color: var(--text-sub);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel-modal:hover {
    background: #E9ECEF;
    border-color: #DEE2E6;
}

.btn-save-modal {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-pink), #E8B4BC);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(216, 167, 177, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-save-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(216, 167, 177, 0.4);
    background: linear-gradient(135deg, #E8B4BC, var(--primary-pink));
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .btn-kakao-big { font-size: 16px; padding: 18px; }

    .modal-content {
        width: 95%;
        margin: 18px auto;
        max-height: calc(100dvh - 36px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-header {
        padding: 18px 18px 16px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .modal-body {
        padding: 18px;
    }

    .modal-footer {
        padding: 12px 18px 18px;
        flex-direction: column;
    }

    .btn-cancel-modal,
    .btn-save-modal {
        width: 100%;
        justify-content: center;
    }
}
