/* Events Page Styles */
.events-main {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image {
    transform: scale(1.05);
}

.event-tags {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.tag.networking {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.tag.investment {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.tag.conference {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.event-content {
    padding: 25px;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.event-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-title a:hover {
    color: #667eea;
}

.event-summary {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.event-meta {
    display: flex;
    gap: 20px;
    color: #888;
    font-size: 0.9rem;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-meta i {
    color: #667eea;
}

.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 350px;
    border: 2px dashed #ddd;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.coming-soon-content i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 15px;
}

.coming-soon-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.coming-soon-content p {
    color: #666;
}

/* Event Detail Page Styles */
.event-detail-main {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.event-detail-header {
    text-align: center;
    margin-bottom: 60px;
}

.event-detail-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.event-detail-main-content {
    min-width: 0;
}

.event-detail-image {
    width: 100%;
/*    height: 400px; */
    object-fit: cover;
    border-radius: 20px;
    margin: 0 0 30px;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.event-detail-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.event-detail-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.event-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #666;
}

.event-detail-meta i {
    color: #667eea;
}

.event-description {
    color: #444;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.event-description ul,
.event-description ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.event-description li {
    margin: 0.5rem 0;
    padding-left: 0;
    list-style-position: inside;
}

.event-description ul li {
    list-style-type: disc;
}

.event-description ol li {
    list-style-type: decimal;
}

.event-highlights {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.event-highlights h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.highlight-list {
    display: grid;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-weight: 500;
}

.highlight-item i {
    color: #4ade80;
    font-size: 1.1rem;
}

.apply-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Event Detail Sidebar */
.event-detail-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.sidebar-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.sidebar-meta {
    margin-bottom: 25px;
}

.sidebar-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #555;
}

.sidebar-meta-item i {
    color: #667eea;
    width: 16px;
    flex-shrink: 0;
}

.sidebar-apply-button,
.sidebar-view-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    margin-top: 10px;
}

.sidebar-apply-button:hover,
.sidebar-view-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    color: white;
}

.sidebar-apply-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
}

/* 회원가입 관련 스타일 */
.email-verification {
    display: flex;
    gap: 10px;
    align-items: center;
}

.email-verification input {
    flex: 1;
}

.verify-button {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.verify-button:hover {
    background: #5a6fd8;
}

.verify-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.verification-status {
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.verification-text.success {
    color: #28a745;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
}

.verification-text.error {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
}

.company-search {
    position: relative;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-result-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.search-result-item:hover,
.search-result-item.selected {
    background-color: #f8f9fa;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item.no-results,
.search-result-item.error {
    cursor: default;
    color: #666;
    font-style: italic;
}

.search-result-item.error {
    color: #dc3545;
}

.company-name-kor {
    font-weight: 500;
    color: #333;
}

.company-name-eng {
    color: #666;
    font-size: 0.9em;
    margin-top: 2px;
}


/* Login Page Styles */
.login-layout {
    display: grid;
    grid-template-columns: 2fr 350px;
    gap: 40px;
    align-items: start;
}

.login-main-content {
    min-width: 0;
}

.login-form-container {
/*    max-width: 500px; */
    margin: 0 auto;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
}

.auth-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #764ba2;
}

/* Auth Sidebar Styles */
.auth-sidebar-info {
    text-align: center;
}

.auth-sidebar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.auth-sidebar-icon i {
    font-size: 2rem;
    color: white;
}

.auth-benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #666;
}

.benefit-item i {
    color: #667eea;
    width: 20px;
    text-align: center;
}

/* Email Verification Styles */
.email-verification {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.email-verification input[type="email"] {
    flex: 1;
}

.verify-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.verify-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.verify-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.verification-status {
    margin-top: 8px;
    padding: 8px 12px;
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 8px;
    font-size: 0.9rem;
}

.verification-text {
    color: #2e7d32;
    font-weight: 500;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e1e1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}



/* Terms Link Styles */
.terms-link {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease;
}

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

.popup-header {
    padding: 25px 30px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.popup-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.popup-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #f0f0f0;
    color: #333;
}

.popup-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.terms-content {
    line-height: 1.6;
    color: #444;
}

.terms-content h4 {
    color: #333;
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.terms-content h5 {
    color: #555;
    font-size: 1.1rem;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.terms-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.terms-content ul {
    margin: 10px 0 15px 20px;
    padding: 0;
}

.terms-content li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Custom scrollbar for popup */
.popup-body::-webkit-scrollbar {
    width: 6px;
}

.popup-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.popup-body::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.popup-body::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}





/* Responsive Design for Auth Pages */
@media (max-width: 768px) {
    .login-layout,
    .application-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .application-sidebar {
        order: -1;
    }

    .email-verification {
        flex-direction: column;
        gap: 15px;
    }

    .verify-button {
        align-self: stretch;
    }

    .popup-content {
        width: 95%;
        max-height: 90vh;
    }

    .popup-header {
        padding: 20px;
    }

    .popup-body {
        padding: 20px;
        max-height: 70vh;
    }

    .popup-header h3 {
        font-size: 1.1rem;
    }
}










/* Event Application Page Styles */
.application-main {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.application-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.application-main-content {
    min-width: 0;
}

.event-application-banner {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
}

.event-banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.event-banner-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #666;
    font-size: 0.95rem;
}

.event-banner-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.event-banner-meta i {
    color: #667eea;
}

.application-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Current File Display */
.current-file {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-info i {
    font-size: 1.2rem;
    color: #dc3545;
}

.file-info span {
    flex: 1;
    font-weight: 500;
    color: #333;
}

.file-actions {
    display: flex;
    gap: 8px;
}

.file-download,
.file-delete {
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.file-download {
    color: #667eea;
    background: white;
    border: 1px solid #667eea;
}

.file-download:hover {
    background: #667eea;
    color: white;
}

.file-delete {
    color: #dc3545;
    background: white;
    border: 1px solid #dc3545;
}

.file-delete:hover {
    background: #dc3545;
    color: white;
}

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-cancel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    background: #6c757d;
    color: white;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 150px;
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
}

.btn-cancel:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(108, 117, 125, 0.4);
    color: white;
}

/* My Menu List */
.my-menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.my-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.my-menu-item:hover,
.my-menu-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.my-menu-item i {
    font-size: 1.1rem;
}

/* Stats Grid */
.sidebar-stats {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
}

.sidebar-stats h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.application-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-view-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.sidebar-view-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.company-search {
    position: relative;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e1e1e1;
    border-top: none;
    border-radius: 0 0 10px 10px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    display: none;
}

.search-result-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.search-result-item:hover,
.search-result-item.selected {
    background-color: #f8f9fa;
}

.search-result-item:last-child {
    border-bottom: none;
}

.file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.file-upload input[type=file] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: block;
    padding: 12px 16px;
    border: 2px dashed #ddd;
    border-radius: 10px;
    text-align: center;
    color: #666;
    transition: all 0.3s ease;
}

.file-upload:hover .file-upload-label {
    border-color: #667eea;
    color: #667eea;
}

.submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    min-width: 150px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Active navigation link */
.nav-links a.active {
    color: #667eea;
    font-weight: 600;
}

/* Container max-width and centering */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Application layout fixes */
.application-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
    max-width: 100%;
    margin: 0 auto;
}

.application-main-content {
    min-width: 0;
    width: 100%;
}

.application-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .event-detail-layout,
    .application-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .event-detail-sidebar,
    .application-sidebar {
        position: static;
        order: -1;
    }

    .sidebar-content {
        padding: 25px;
    }

    .sidebar-thumbnail {
        height: 150px;
    }

    /* 모바일에서 신청 답변 스타일 적용 */
    .application-reply-info {
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid #f0f0f0;
    }

    .application-reply-info h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
        color: #333;
    }

    .reply-detail {
        padding: 12px;
        border-radius: 8px;
        background: rgba(33, 37, 41, 0.05);
        border: 1px solid rgba(33, 37, 41, 0.1);
    }

    .reply-content {
        color: #333;
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 8px;
        text-align: left;
        word-break: break-word;
    }

    .reply-description {
        color: #666;
        font-size: 0.75rem;
        display: block;
        text-align: center;
        font-style: italic;
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .event-card {
        margin: 0 10px;
    }

    .event-thumbnail {
        height: 200px;
    }

    .event-detail-meta {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .event-detail-content {
        padding: 25px 20px;
    }

    .application-layout,
    .login-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .application-sidebar,
    .event-detail-sidebar {
        position: static;
        order: -1;
    }

    .event-application-banner {
        padding: 25px 20px;
        margin: 0 15px 20px;
    }

    .event-banner-meta {
        flex-direction: column;
        gap: 15px;
    }

    .application-form {
        padding: 25px 20px;
        margin: 0 15px;
    }

    .sidebar-content {
        margin: 0 15px;
        border: none;
        box-shadow: none;
        background: transparent;
        padding: 20px 0;
    }

    .my-menu-list {
        flex-direction: row;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .my-menu-item {
        white-space: nowrap;
        min-width: fit-content;
    }

    /* My Event List Mobile */
    .my-event-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: left;
        padding: 15px;
    }

    .my-event-thumbnail {
        text-align: center;
    }

    .my-event-thumbnail img {
        width: 100%;
        max-width: 200px;
        height: 120px;
    }

    .my-event-actions {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .btn-view-detail,
    .btn-view-event {
        flex: 1;
        max-width: 150px;
    }

    /* My Event Detail Mobile */
    .application-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .btn-back,
    .btn-view-event {
        justify-content: center;
    }

    /* Sidebar Stats Mobile */
    .sidebar-stats {
        margin-top: 15px;
        padding-top: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .stat-item {
        padding: 10px 5px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

/* My Page Styles */
.form-section-title {
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.form-section-title h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.form-section-title small {
    color: #666;
    font-size: 0.9rem;
}

.form-help {
    color: #888;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.my-menu-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.my-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    text-decoration: none;
    color: #666;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.my-menu-item:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.my-menu-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.my-menu-item i {
    width: 16px;
    text-align: center;
}

/* My Event List Styles */
.my-event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.my-event-item {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 20px;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
}

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

.my-event-thumbnail {
    position: relative;
}

.my-event-thumbnail img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.event-status {
    position: absolute;
    top: -5px;
    right: -5px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.status-pending {
    background: #f59e0b;
}

.status-approved {
    background: #10b981;
}

.status-rejected {
    background: #ef4444;
}

.my-event-info {
    min-width: 0;
}

.my-event-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.my-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
}

.my-event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.my-event-meta i {
    color: #667eea;
}

.my-event-company {
    color: #555;
    font-size: 0.95rem;
}

.my-event-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-view-detail,
.btn-view-event {
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-view-detail {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-view-detail:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-view-event {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
}

.btn-view-event:hover {
    background: #e9ecef;
    color: #333;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-icon {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.empty-state p {
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-explore-events {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-explore-events:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Sidebar Stats */
.sidebar-stats {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.sidebar-stats h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px 10px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
}

/* My Event Detail Styles */
.application-detail-header {
    position: relative;
    margin-bottom: 30px;
}

.application-status-banner {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.application-status-banner.status-pending {
    background: rgba(245, 158, 11, 0.9);
}

.application-status-banner.status-approved {
    background: rgba(16, 185, 129, 0.9);
}

.application-status-banner.status-rejected {
    background: rgba(239, 68, 68, 0.9);
}

.status-info {
    color: white;
    text-align: center;
}

.status-label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 2px;
    opacity: 0.9;
}

.status-value {
    font-size: 1rem;
    font-weight: 600;
}

.detail-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.detail-section:last-child {
    border-bottom: none;
}

.detail-section .section-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
    display: inline-block;
}

.event-basic-info .event-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.application-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-item.full-width {
    grid-column: 1 / -1;
}

.info-item label {
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
}

.info-item span {
    color: #333;
    padding: 8px 0;
}

.application-reason {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    color: #333;
    line-height: 1.6;
    margin-top: 8px;
}

/* Attached Files */
.attached-files {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.file-item i {
    color: #dc3545;
    font-size: 1.2rem;
}

.file-label {
    flex: 1;
    font-weight: 500;
    color: #333;
}

.file-download {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 12px;
    border: 1px solid #667eea;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.file-download:hover {
    background: #667eea;
    color: white;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.btn-back,
.btn-edit,
.btn-view-event {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back {
    background: #6c757d;
    color: white;
}

.btn-edit {
    background: #28a745;
    color: white;
}

.btn-edit:hover {
    background: #218838;
    transform: translateY(-2px);
}

.btn-back:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.btn-view-event {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-view-event:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-cancel-application {
    background: #dc3545;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
}

.btn-cancel-application:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.status-cancelled {
    background: #6c757d !important;
    color: white !important;
}

.status-detail.status-cancelled {
    background: rgba(108, 117, 125, 0.1);
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.status-detail.status-cancelled .status-badge {
    color: #6c757d;
}

/* Application Reply Info */
.application-reply-info {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.application-reply-info h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333;
}

.reply-detail {
    padding: 15px;
    border-radius: 8px;
    background: rgba(33, 37, 41, 0.05);
    border: 1px solid rgba(33, 37, 41, 0.1);
}

.reply-content {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: left;
    word-break: break-word;
}

.reply-description {
    color: #666;
    font-size: 0.8rem;
    display: block;
    text-align: center;
    font-style: italic;
}

/* Application Status Info */
.application-status-info {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.application-status-info h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333;
}

.status-detail {
    text-align: center;
    padding: 15px;
    border-radius: 10px;
}

.status-detail.status-pending {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.status-detail.status-approved {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.status-detail.status-rejected {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.status-detail.status-cancelled {
    background: rgba(108, 117, 125, 0.15);
    border: 1px solid rgba(108, 117, 125, 0.4);
}

.status-badge {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.status-detail.status-pending .status-badge {
    color: #f59e0b;
}

.status-detail.status-approved .status-badge {
    color: #10b981;
}

.status-detail.status-rejected .status-badge {
    color: #ef4444;
}

.status-description {
    color: #666;
    line-height: 1.4;
    font-size: 0.85rem;
}

@media (max-width: 480px) {
    .events-main,
    .event-detail-main,
    .application-main {
        padding: 100px 0 60px;
    }

    .event-thumbnail {
        height: 180px;
    }

    .event-content {
        padding: 20px;
    }

    .my-event-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .my-event-actions {
        flex-direction: row;
        justify-content: center;
    }

    .application-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .event-detail-image {
/**        height: 250px;**/
    }
}

/* ========================================
   Guest Application Styles
   ======================================== */

/* 참석자 목록 컨테이너 */
#guestList {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

/* 참석자 카드 */
.guest-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.guest-item:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
}

/* 참석자 헤더 */
.guest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.guest-number {
    font-weight: 600;
    color: #007bff;
    font-size: 1rem;
}

/* 삭제 버튼 */
.remove-guest-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #dc3545;
    color: #dc3545;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.remove-guest-btn:hover {
    background: #dc3545;
    color: #fff;
}

/* 참석자 필드 그리드 */
.guest-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.guest-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.guest-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.guest-field label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.guest-field input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.guest-field input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* 참석자 추가 버튼 */
.add-guest-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #007bff;
    color: #007bff;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-guest-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #e7f1ff 0%, #d0e3ff 100%);
    border-style: solid;
    transform: translateY(-2px);
}

.add-guest-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.add-guest-btn i {
    font-size: 1.2rem;
}

/* 반응형 */
@media (max-width: 768px) {
    .guest-row {
        grid-template-columns: 1fr;
    }

    .guest-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .remove-guest-btn {
        align-self: flex-end;
    }
}

/* ========================================
   Guest Application Complete Styles
   ======================================== */

/* 완료 아이콘 */
.complete-icon {
    text-align: center;
    margin-bottom: 20px;
}

.complete-icon i {
    font-size: 80px;
    color: #28a745;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* 완료 폼 스타일 */
.complete-form .info-value {
    padding: 12px 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
}

.complete-form .inquiry-text {
    white-space: pre-wrap;
    min-height: 80px;
}

.complete-item {
    background: #fff;
    border: 1px solid #e9ecef;
}

.complete-item .guest-header {
    border-bottom: 1px solid #e9ecef;
}

.guest-count {
    font-weight: normal;
    color: #007bff;
}

/* 신청 상태 박스 */
.application-status-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 1px solid #ffc107;
    border-radius: 12px;
    margin-bottom: 15px;
}

.application-status-box .status-icon {
    width: 40px;
    height: 40px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.application-status-box .status-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.application-status-box .status-text strong {
    font-size: 0.85rem;
    color: #666;
}

.application-status-box .status-pending {
    font-size: 1rem;
    font-weight: 600;
    color: #f57c00;
}

/* Application Status - Complete */
.application-status-box.status-complete {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-color: #28a745;
}

.application-status-box.status-complete .status-icon {
    background: #28a745;
}

.application-status-box .status-success {
    font-size: 1rem;
    font-weight: 600;
    color: #28a745;
}

/* Receipt Styles - Complete Page */
.application-receipt {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.receipt-section {
    padding: 24px 28px;
    border-bottom: 1px solid #eee;
}

.receipt-section:last-of-type {
    border-bottom: none;
}

.receipt-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.receipt-section-title i {
    color: #667eea;
    font-size: 1.1rem;
}

.receipt-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: auto;
}

.receipt-content {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 16px 20px;
}

.receipt-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.receipt-value.company-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

/* Receipt Table */
.receipt-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.receipt-table thead th {
    text-align: left;
    padding: 10px 12px;
    background: #e9ecef;
    color: #495057;
    font-weight: 600;
    font-size: 0.85rem;
    border-bottom: 2px solid #dee2e6;
}

.receipt-table thead th:first-child {
    border-radius: 8px 0 0 0;
    width: 40px;
    text-align: center;
}

.receipt-table thead th:last-child {
    border-radius: 0 8px 0 0;
}

.receipt-table tbody td {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    color: #333;
}

.receipt-table tbody tr:last-child td {
    border-bottom: none;
}

.receipt-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

.receipt-table .text-center {
    text-align: center;
}

/* Receipt Inquiry */
.receipt-inquiry {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Receipt Footer */
.receipt-footer {
    padding: 20px 28px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #dee2e6;
}

.receipt-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.receipt-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.receipt-meta-item i {
    color: #667eea;
}

/* Receipt Back Button */
.receipt-back-button {
    display: block;
    text-align: center;
    padding: 16px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.receipt-back-button:hover {
    background: linear-gradient(135deg, #5a6fd6 0%, #6a4190 100%);
    color: #fff;
}

.receipt-back-button i {
    margin-right: 8px;
}

/* Complete Page Icon */
.complete-icon {
    margin-bottom: 20px;
}

.complete-icon i {
    font-size: 4rem;
    color: #28a745;
}

/* Responsive Receipt Table */
@media (max-width: 768px) {
    .receipt-section {
        padding: 20px;
    }

    .receipt-table {
        display: block;
        overflow-x: auto;
    }

    .receipt-table thead th,
    .receipt-table tbody td {
        padding: 10px 8px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .receipt-meta {
        flex-direction: column;
        gap: 12px;
    }

    .receipt-footer {
        padding: 16px 20px;
    }
}