* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        
        html, body {
            height: 100%;
        }
        
        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background-color: #f9fafb;
        }
        
        .content-wrapper {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding: 1rem;
            margin-top: 5rem;
        }
        
        /* Header ve Footer Stilleri */
        .site-header {
            background-color: #ffffff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            color: #1f2937;
            cursor: pointer;
        }
        
        .logo i {
            margin-right: 0.5rem;
            font-size: 1.5rem;
        }
        
        .logo h1 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            color: #1f2937;
        }
        
        .main-nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .main-nav li {
            margin: 0 1rem;
        }
        
        .main-nav a {
            text-decoration: none;
            color: #4b5563;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        
        .main-nav a.active, .main-nav a:hover {
            color: #1f2937;
        }
        
        .main-nav a.active:after, .main-nav a:hover:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #1f2937;
        }
        
        .contact-info .phone-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #1f2937;
            font-weight: 500;
        }
        
        .contact-info i {
            margin-right: 0.5rem;
        }
        
        .mobile-nav-header,
        .mobile-contact,
        .close-menu,
        .mobile-social,
        .mobile-address {
            display: none;
        }
        
        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
        
        /* Mobil menü stilleri */
        @media screen and (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: center;
                padding: 0.5rem;
            }
            
            .logo {
                margin-bottom: 0.5rem;
            }
            
            .menu-toggle {
                display: block;
                position: absolute;
                top: 1rem;
                right: 1rem;
            }
            
            .main-nav {
                position: fixed;
                top: 0;
                right: -300px;
                width: 300px;
                height: 100vh;
                background-color: #ffffff;
                z-index: 1001;
                transition: right 0.3s ease;
                box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
                padding: 1rem;
                overflow-y: auto;
            }
            
            .main-nav.active {
                right: 0;
            }
            
            .main-nav ul {
                flex-direction: column;
                margin-top: 1.5rem;
            }
            
            .main-nav li {
                margin: 0;
                border-bottom: 1px solid #e5e7eb;
            }
            
            .main-nav a {
                display: block;
                padding: 1rem 0;
            }
            
            .main-nav a:hover:after,
            .main-nav a.active:after {
                display: none;
            }
            
            .contact-info {
                display: none;
            }
            
            .mobile-nav-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                border-bottom: 1px solid #e5e7eb;
                padding-bottom: 1rem;
            }
            
            .mobile-nav-header .logo h1 {
                font-size: 1.25rem;
            }
            
            .close-menu {
                display: block;
                background: none;
                border: none;
                cursor: pointer;
                color: #1f2937;
            }
            
            .mobile-contact {
                display: block;
                margin-top: 0rem;
                padding-top: 0rem;
                border-top: 0px solid #e5e7eb;
            }
            
            .mobile-contact .phone-link {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                text-decoration: none;
                color: #1f2937;
                font-weight: 500;
                margin-bottom: 0rem;
            }
            
            .mobile-social {
                display: block;
                margin-top: 0rem;
                padding-top: 1rem;
                border-top: 1px solid #e5e7eb;
            }
            
            .mobile-social h3 {
                font-size: 1rem;
                font-weight: 600;
                margin-bottom: 0.75rem;
            }
            
            .mobile-address {
                display: block;
                margin-top: 1rem;
                padding-top: 1rem;
                border-top: 1px solid #e5e7eb;
            }
            
            .mobile-address h3 {
                font-size: 1rem;
                font-weight: 600;
                margin-bottom: 0.5rem;
            }
            
            .mobile-address p {
                color: #4b5563;
                font-size: 0.875rem;
                line-height: 1.5;
            }
            
            .menu-overlay.active {
                display: block;
            }
        }
        
        .reservation-section {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 1rem;
            padding: 0 1rem;
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }
        
        .section-description {
            color: #6b7280;
            margin-bottom: 2rem;
        }
        
        .site-footer {
            background-color: #1f2937;
            color: #e5e7eb;
            padding: 3rem 0 0;
            width: 100%;
            margin-top: auto;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            padding: 0 1rem;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .footer-logo i {
            margin-right: 0.5rem;
            font-size: 1.25rem;
        }
        
        .footer-logo span {
            font-size: 1.25rem;
            font-weight: 600;
        }
        
        .footer-info p {
            margin-bottom: 1rem;
            font-size: 0.875rem;
            line-height: 1.5;
        }
        
        .footer-links h3, .footer-hours h3, .footer-social h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .footer-links ul, .footer-hours ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: #e5e7eb;
            text-decoration: none;
            font-size: 0.875rem;
        }
        
        .footer-links a:hover {
            color: #ffffff;
            text-decoration: none;
        }
        
        .footer-hours li {
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
            display: flex;
            justify-content: space-between;
        }
        
        .footer-hours li span {
            font-weight: 500;
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
        }
        
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 3rem;
            height: 3rem;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #e5e7eb;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icon:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: #ffffff;
        }
        
        .footer-bottom {
            background-color: #111827;
            text-align: center;
            padding: 1rem;
            margin-top: 3rem;
            font-size: 0.875rem;
        }
        
        /* Rezervasyon Formu Stilleri */
        .container {
            width: 100%;
            max-width: 28rem;
            padding: 1.5rem;
            background-color: #ffffff;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }
        
        .progress-container {
            margin-bottom: 1.5rem;
        }
        
        .progress-steps {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        
        .step-circle {
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #e5e7eb;
            color: #6b7280;
            font-size: 0.875rem;
            font-weight: 500;
        }
        
        .step-circle.active {
            background-color: #1f2937;
            color: #ffffff;
        }
        
        .progress-bar {
            height: 0.25rem;
            width: 100%;
            background-color: #e5e7eb;
            border-radius: 9999px;
        }
        
        .progress-indicator {
            height: 100%;
            background-color: #1f2937;
            border-radius: 9999px;
            transition: width 0.3s ease;
        }
        
        .step-content {
            margin-bottom: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1rem;
        }
        
        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: #374151;
            margin-bottom: 0.25rem;
        }
        
        .input-wrapper {
            position: relative;
        }
        
        .input-icon {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: #6b7280;
        }
        
        .form-input {
            width: 100%;
            padding: 0.75rem 2.5rem 0.75rem 2.5rem;
            border: 1px solid #d1d5db;
            border-radius: 0.375rem;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            font-size: 16px;
        }
        
        .form-input:focus {
            border-color: #4b5563;
            box-shadow: 0 0 0 1px #4b5563;
        }
        
        .error-message {
            color: #dc2626;
            font-size: 0.75rem;
            margin-top: 0.25rem;
            background-color: #fee2e2;
            padding: 0.5rem;
            border-radius: 0.25rem;
            margin-bottom: 1rem;
        }
        
        .success-message {
            color: #047857;
            font-size: 0.875rem;
            margin-top: 0.25rem;
            background-color: #d1fae5;
            padding: 0.75rem;
            border-radius: 0.25rem;
            margin-bottom: 1rem;
        }
        
        .form-input.error {
            border-color: #dc2626;
        }
        
        .form-input.error:focus {
            border-color: #dc2626;
            box-shadow: 0 0 0 1px #dc2626;
        }
        
        .service-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }
        
        .service-item {
            padding: 1rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.2s;
        }
        
        .service-item:hover {
            background-color: #f9fafb;
        }
        
        .service-item.selected {
            border-color: #1f2937;
            background-color: #f3f4f6;
        }
        
        .service-icon {
            margin-bottom: 0.5rem;
            color: #4b5563;
        }
        
        .service-item.selected .service-icon {
            color: #1f2937;
        }
        
        .service-name {
            font-size: 0.875rem;
            font-weight: 500;
            text-align: center;
        }
        
        .service-price {
            font-size: 0.75rem;
            color: #6b7280;
            margin-top: 0.25rem;
        }
        
        .check-icon {
            margin-top: 0.5rem;
            color: #1f2937;
        }
        
        .staff-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .staff-item {
            padding: 1rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .staff-item:hover {
            background-color: #f9fafb;
        }
        
        .staff-item.selected {
            border-color: #1f2937;
            background-color: #f3f4f6;
        }
        
        .staff-content {
            display: flex;
            align-items: center;
        }
        
        .staff-avatar {
            width: 2.5rem;
            height: 2.5rem;
            background-color: #e5e7eb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.75rem;
        }
        
        .staff-info {
            flex: 1;
        }
        
        .staff-name {
            font-weight: 500;
        }
        
        .staff-title {
            font-size: 0.875rem;
            color: #6b7280;
        }
        
        .staff-price {
            font-size: 0.875rem;
            color: #1f2937;
            font-weight: 500;
        }
        
        .calendar-container {
            margin-bottom: 1rem;
        }
        
        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }
        
        .calendar-month {
            font-weight: 500;
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.25rem;
        }
        
        .calendar-day-name {
            text-align: center;
            font-size: 0.875rem;
            font-weight: 500;
            padding: 0.25rem;
        }
        
        .calendar-day {
            padding: 0.5rem;
            text-align: center;
            border-radius: 0.375rem;
            cursor: pointer;
        }
        
        .calendar-day:hover {
            background-color: #f3f4f6;
        }
        
        .calendar-day.today {
            border: 1px solid #1f2937;
            color: #1f2937;
        }
        
        .calendar-day.selected {
            background-color: #1f2937;
            color: #ffffff;
        }
        
        .calendar-day.disabled {
            color: #d1d5db;
            cursor: not-allowed;
        }
        
        .time-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.5rem;
        }
        
        .time-item {
            padding: 0.5rem;
            text-align: center;
            border: 1px solid #e5e7eb;
            border-radius: 0.375rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .time-item:hover {
            background-color: #f3f4f6;
        }
        
        .time-item.selected {
            border-color: #1f2937;
            background-color: #1f2937;
            color: #ffffff;
        }
        
        .time-item.disabled {
            color: #d1d5db;
            border-color: #e5e7eb;
            background-color: #f9fafb;
            cursor: not-allowed;
        }
        
        .button-container {
            display: flex;
            justify-content: space-between;
            margin-top: 1.5rem;
        }
        
        .button {
            padding: 0.75rem 1rem;
            border-radius: 0.375rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            border: none;
            outline: none;
        }
        
        .button-back {
            background-color: #f3f4f6;
            color: #1f2937;
        }
        
        .button-back:hover {
            background-color: #e5e7eb;
        }
        
        .button-next {
            background-color: #1f2937;
            color: #ffffff;
        }
        
        .button-next:hover {
            background-color: #111827;
        }
        
        .button-next:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .button-icon {
            margin-right: 0.25rem;
        }
        
        .button-text {
            margin: 0 0.25rem;
        }
        
        .hidden {
            display: none;
        }
        
        .invisible {
            visibility: hidden;
        }
        
        .success-container {
            text-align: center;
            padding: 1.5rem 0;
        }
        
        .success-icon {
            width: 4rem;
            height: 4rem;
            background-color: #d1fae5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: #059669;
        }
        
        .success-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }
        
        .success-message {
            color: #4b5563;
            margin-bottom: 1.5rem;
        }
        
        .reservation-details {
            margin-top: 1.5rem;
            padding: 1rem;
            background-color: #f9fafb;
            border-radius: 0.5rem;
            text-align: left;
        }
        
        .detail-item {
            margin-bottom: 0.5rem;
        }
        
        .verification-info {
            font-size: 0.875rem;
            color: #6b7280;
            margin-bottom: 1rem;
            text-align: center;
        }

        /* Galeri Sayfası Stilleri */
        .gallery-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .gallery-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .gallery-title::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: #1f2937;
            margin: 10px auto 0;
        }
        
        .gallery-filter {
            display: flex;
            justify-content: center;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .filter-btn {
            padding: 0.5rem 1.25rem;
            background-color: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: #4b5563;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .filter-btn:hover, 
        .filter-btn.active {
            background-color: #1f2937;
            color: #ffffff;
            border-color: #1f2937;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.5rem;
        }
        
        @media screen and (min-width: 576px) {
            .gallery-grid {
                gap: 0.75rem;
            }
        }
        
        @media screen and (min-width: 768px) {
            .gallery-grid {
                gap: 1rem;
            }
        }
        
        @media screen and (min-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 0.375rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            aspect-ratio: 1 / 1;
            background-color: #000;
        }
        
        @media screen and (max-width: 576px) {
            .gallery-item {
                border-radius: 0.25rem;
                box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            }
            .video-play-button {
                font-size: 19px!important;
                width: 40px!important;
                height: 40px!important;
            }
        }
        
        /*.gallery-item.video-item {
            aspect-ratio: 16 / 9;
        }*/
        
        .gallery-item a {
            display: block;
            width: 100%;
            height: 100%;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-item .video-container {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .video-thumbnail {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .video-thumbnail:hover img {
            transform: scale(1.05);
        }
        
        .video-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            transition: all 0.2s;
            z-index: 2;
            pointer-events: none;
        }
        
        .video-thumbnail:hover .video-play-button {
            background-color: rgba(31, 41, 55, 0.9);
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        /* Video modal */
        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .video-modal-content {
            position: relative;
            max-width: 1000px;
            width: 100%;
            max-height: 80vh;
        }
        
        .video-modal video {
            width: 100%;
            max-height: 80vh;
            object-fit: contain;
        }
        
        .video-modal-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        /* LightBox özelleştirmeleri */
        .lb-data .lb-caption {
            display: none !important;
        }
        
        .lb-data .lb-details {
            display: none !important;
        }
        
        .lb-nav a.lb-prev,
        .lb-nav a.lb-next {
            opacity: 0.8;
        }
        
        /* Boş galeri gösterimi */
        .empty-gallery {
            text-align: center;
            padding: 3rem;
            background-color: #f9fafb;
            border-radius: 0.5rem;
            margin: 2rem 0;
            border: 1px dashed #d1d5db;
        }
        
        .empty-gallery i {
            font-size: 3rem;
            color: #9ca3af;
            margin-bottom: 1rem;
        }
        
        .empty-gallery p {
            color: #4b5563;
        }
        
        /* Medya türü işareti */
        .media-type-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
            z-index: 1;
        }


        /* İletişim Sayfası Stilleri */
        .contact-container {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .contact-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .contact-title::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: #1f2937;
            margin: 10px auto 0;
        }
        
        .map-container {
            width: 100%;
            height: 400px;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        .contact-info-section {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1.5rem;
            padding: 0 1rem;
        }
        
        @media screen and (min-width: 768px) {
            .contact-info-section {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .contact-card {
            background-color: #ffffff;
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }
        
        .contact-icon {
            width: 3rem;
            height: 3rem;
            background-color: #f3f4f6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: #1f2937;
        }
        
        .contact-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }
        
        .contact-card p {
            color: #4b5563;
            margin-bottom: 0.5rem;
        }
        
        .contact-card a {
            display: block;
            color: #1f2937;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .contact-card a:hover {
            color: #4b5563;
        }
        
        .working-hours {
            margin-top: 1rem;
        }
        
        .working-hours p {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.25rem;
        }
        
        .working-hours span {
            font-weight: 500;
        }

        /* SMS verification form additional styles */
.mt-4 {
    margin-top: 1rem;
}

.success-message {
    color: #059669;
    background-color: #d1fae5;
    padding: 0.75rem;
    border-radius: 0.375rem;
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 500;
}

/* Tekrar gönder buton stilleri */
#resend-btn {
    background-color: #f3f4f6;
    color: #1f2937;
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    display: block;
    width: 100%;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.2s;
}

#resend-btn:hover {
    background-color: #e5e7eb;
}

#resend-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}