* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

body {
    font-family: 'Georgia', serif;
    overflow-x: hidden;
}

/* Landing Page Styles */
.landing-page {
    background-color: #EAE6DD;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-link {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    cursor: pointer;
}

.landing-container {
    max-width: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
}

.ticket-wrapper {
    position: relative;
    width: 90%;
    max-width: 450px;
    margin: 0 auto;
    padding: 0 20px;
}

.ticket-image {
    width: 68%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .ticket-image {
        width: 75vw;
    }
    
    .button-link {
        width: 80vw;
        max-width: none;
    }
}

.button-link {
    position: absolute;
    top: calc(80% + 25px);
    left: 50%;
    transform: translateX(-50%);
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
    width: 56%;
    max-width: 224px;
}

.button-link:hover {
    transform: translateX(-50%) translateY(-5px);
}

.button-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

/* Gallery Page Styles */
.gallery-page {
    background-color: #EAE6DD;
    min-height: 100vh;
    padding: 20px;
}

.gallery-header {
    text-align: center;
    padding: 20px 0;
}

.logo-small {
    width: 76px;
    height: 76px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-small:hover {
    transform: scale(1.05);
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.nav-btn {
    padding: 10px 25px;
    background-color: transparent;
    color: #4D232D;
    border: 2px solid #4D232D;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-btn:hover {
    background-color: #4D232D;
    color: white;
}

.nav-btn.active {
    background-color: #4D232D;
    color: white;
}

.my-album-info {
    text-align: center;
    padding: 10px 0 20px;
}

.uploader-name-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 8px 16px;
    background-color: rgba(77, 35, 45, 0.05);
    border-radius: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.name-label {
    color: #5A3A42;
    font-size: 13px;
    font-weight: 500;
}

.name-value {
    color: #4D232D;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Georgia', serif;
}

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

.edit-name-btn:hover {
    background-color: rgba(77, 35, 45, 0.1);
    transform: scale(1.1);
}

.album-count {
    color: #5A3A42;
    font-size: 14px;
    font-weight: 600;
}

.empty-album {
    position: fixed;
    bottom: 180px;
    right: 95px;
    max-width: 280px;
    text-align: right;
}

.empty-album p {
    color: #5A3A42;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.empty-album-arrow {
    width: 120px;
    height: 120px;
    margin-left: auto;
    margin-top: 15px;
    margin-right: 10px;
    opacity: 0.7;
}

.gallery-container {
    column-count: 2;
    column-gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

@media (min-width: 768px) {
    .gallery-container {
        column-count: 3;
    }
}

@media (min-width: 1024px) {
    .gallery-container {
        column-count: 4;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 15px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.lazy-image {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

.uploader-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(90, 58, 66, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    letter-spacing: 0.5px;
    font-family: 'Georgia', serif;
}

.add-photo-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #4D232D;
    color: white;
    border: none;
    font-size: 40px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.add-photo-btn:hover {
    background-color: #6B4A52;
    transform: scale(1.1);
}

.plus-icon {
    line-height: 0;
    display: block;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: flex-start;
    padding-top: 15vh;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #4D232D;
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-title {
    font-family: 'Brush Script MT', cursive;
    font-size: 32px;
    margin-bottom: 20px;
    color: #D4B896;
    font-weight: normal;
}

.modal-title-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.modal-subtitle {
    font-size: 11px;
    margin-top: 15px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: white;
}

.modal-subtitle-image {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.name-input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 25px;
    font-family: 'Georgia', serif;
    background-color: #E8E3DC;
    color: #5A3A42;
}

.name-input:focus {
    outline: 2px solid #D4B896;
}

.save-btn {
    background-color: #C8CE7F;
    color: #4D232D;
    border: none;
    padding: 14px 60px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2.5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lunaquete', 'Georgia', serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.save-btn:hover {
    background-color: #D4CFC8;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Upload Notification Styles */
.upload-notification {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    min-width: 300px;
}

.upload-notification.active {
    display: block;
    animation: slideUp 0.3s ease;
}

.notification-message {
    color: #5A3A42;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background-color: #E8E3DC;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #5A3A42;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

/* Success Notification Styles */
.success-notification {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    text-align: center;
    min-width: 300px;
}

.success-notification.active {
    display: block;
    animation: slideUp 0.3s ease;
}

.success-message {
    color: #5A3A42;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
}

.success-submessage {
    color: #D4B896;
    font-size: 12px;
    font-style: italic;
}

.success-submessage-image {
    width: auto;
    height: 20px;
    margin-top: 5px;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Image Preview Modal Styles */
.image-preview-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-preview-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.preview-image {
    max-width: 60%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

/* Desktop-specific preview styles */
@media (min-width: 769px) {
    .preview-image {
        max-width: 90%;
        max-height: 85vh;
    }
    
    .preview-image-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .preview-download-btn-desktop {
        position: absolute;
        top: 20px;
        right: 80px;
        background-color: rgba(77, 35, 45, 0.9);
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 25px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
        z-index: 1001;
    }
    
    .preview-download-btn-desktop:hover {
        background-color: rgba(77, 35, 45, 1);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .preview-download-btn-mobile,
    .preview-download-btn {
        display: none !important;
    }
    
    .preview-credit-mobile {
        display: none;
    }
    
    .preview-credit-desktop {
        display: block;
        color: rgba(255, 255, 255, 0.9);
        font-size: 16px;
        font-style: italic;
        margin: 0;
        text-align: center;
        font-family: 'Georgia', serif;
    }
}

/* Mobile-specific preview styles */
@media (max-width: 768px) {
    .preview-download-btn-desktop {
        display: none;
    }
    
    .preview-credit-desktop {
        display: none;
    }
    
    .preview-image-wrapper {
        display: contents;
    }
}

.preview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 90%;
}

.preview-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.preview-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.preview-download-btn {
    background-color: rgba(255, 255, 255, 0.95);
    color: #4D232D;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.preview-download-btn:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.preview-download-btn svg {
    width: 20px;
    height: 20px;
}

.preview-download-btn span {
    font-family: 'Georgia', serif;
}

.preview-credit {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-style: italic;
    margin-top: 30px;
    margin-bottom: 0;
    text-align: center;
    font-family: 'Georgia', serif;
}

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

/* Page Loader Styles */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #EAE6DD;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.loader-logo {
    width: 120px;
    height: 120px;
    animation: pulse 2s ease-in-out infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(77, 35, 45, 0.1);
    border-top-color: #4D232D;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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

/* Delete Photo Button */
.delete-photo-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: #5A3A42;
    border: none;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.delete-photo-btn:hover {
    background-color: #d32f2f;
    color: white;
    transform: scale(1.1);
}

/* Admin Panel Styles */
.admin-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 15px 0;
    padding: 15px;
    background-color: rgba(77, 35, 45, 0.05);
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    color: #5A3A42;
    font-size: 14px;
}

.stat-item strong {
    color: #4D232D;
    font-size: 18px;
    margin-left: 5px;
}

.admin-gallery-item {
    position: relative;
}

.deleted-photo {
    opacity: 0.5;
}

.deleted-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(211, 47, 47, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    pointer-events: none;
    z-index: 5;
}

.admin-delete-btn {
    background-color: rgba(211, 47, 47, 0.9);
    color: white;
}

.admin-delete-btn:hover {
    background-color: #b71c1c;
}

/* Admin Search Styles */
.admin-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.admin-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #4D232D;
    color: white;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.admin-action-btn:hover {
    background-color: #3a1a22;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(77, 35, 45, 0.3);
}

.admin-search {
    max-width: 400px;
    margin: 20px auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid rgba(77, 35, 45, 0.2);
    border-radius: 25px;
    font-size: 14px;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
    background-color: white;
}

.search-input:focus {
    outline: none;
    border-color: #4D232D;
    box-shadow: 0 0 0 3px rgba(77, 35, 45, 0.1);
}

.clear-search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #5A3A42;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.clear-search-btn:hover {
    color: #d32f2f;
    transform: translateY(-50%) scale(1.2);
}

/* Slideshow Styles */
.slideshow-page {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.slideshow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 10000;
    padding: 20px 40px 40px;
    overflow-y: auto;
}

/* Decorative Header */
.slideshow-header {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
    flex-shrink: 0;
}

.slideshow-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.slideshow-title {
    color: #D4B896;
    font-family: 'Georgia', serif;
    font-size: 36px;
    font-weight: 400;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slideshow-subtitle {
    color: rgba(212, 184, 150, 0.8);
    font-family: 'Georgia', serif;
    font-size: 16px;
    font-style: italic;
    margin: 0;
    letter-spacing: 1px;
}

/* Decorative Frame */
.slideshow-frame {
    position: relative;
    max-width: 132.6%;
    max-height: 60vh;
    padding: 46.8px;
    background: linear-gradient(145deg, rgba(77, 35, 45, 0.1), rgba(90, 58, 66, 0.1));
    border: 3px solid rgba(212, 184, 150, 0.3);
    border-radius: 10px;
    box-shadow: 
        0 0 40px rgba(212, 184, 150, 0.1),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.frame-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid #D4B896;
}

.frame-top-left {
    top: -3px;
    left: -3px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 10px;
}

.frame-top-right {
    top: -3px;
    right: -3px;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 10px;
}

.frame-bottom-left {
    bottom: -3px;
    left: -3px;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 10px;
}

.frame-bottom-right {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 10px;
}

.slideshow-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.slideshow-image {
    max-width: 100%;
    max-height: 50vh;
    object-fit: contain;
    animation: fadeIn 0.8s ease;
    border-radius: 5px;
}

.slideshow-caption {
    position: relative;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(77, 35, 45, 0.8), rgba(90, 58, 66, 0.8));
    padding: 12px 35px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 184, 150, 0.3);
    flex-shrink: 0;
}

.slideshow-uploader {
    color: #D4B896;
    font-size: 18px;
    font-style: italic;
    font-family: 'Georgia', serif;
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.slideshow-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    align-items: center;
}

.slideshow-nav-btn,
.slideshow-play-btn {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(77, 35, 45, 0.6), rgba(90, 58, 66, 0.6));
    border: 2px solid rgba(212, 184, 150, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    color: #D4B896;
}

.slideshow-nav-btn:hover,
.slideshow-play-btn:hover {
    background: linear-gradient(135deg, rgba(77, 35, 45, 0.8), rgba(90, 58, 66, 0.8));
    border-color: #D4B896;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 184, 150, 0.3);
}

.slideshow-progress {
    position: absolute;
    bottom: 30px;
    right: 40px;
    color: rgba(212, 184, 150, 0.5);
    font-size: 12px;
    font-weight: 400;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .slideshow-header {
        top: 20px;
    }
    
    .slideshow-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .slideshow-title {
        font-size: 24px;
    }
    
    .slideshow-subtitle {
        font-size: 12px;
    }
    
    .slideshow-frame {
        max-width: 100%;
        padding: 20px;
    }
    
    .frame-corner {
        width: 40px;
        height: 40px;
    }
    
    .slideshow-nav-btn,
    .slideshow-play-btn {
        width: 45px;
        height: 45px;
    }
    
    .slideshow-caption {
        margin-bottom: 20px;
        padding: 10px 20px;
    }
    
    .slideshow-uploader {
        font-size: 14px;
    }
    
    .slideshow-progress {
        bottom: 20px;
        right: 20px;
        font-size: 10px;
    }
}

/* Delete Modal Styles */
.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.cancel-btn,
.delete-confirm-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cancel-btn {
    background-color: #E8E3DC;
    color: #5A3A42;
}

.cancel-btn:hover {
    background-color: #D4CFC8;
}

.delete-confirm-btn {
    background-color: #ff4444;
    color: white;
}

.delete-confirm-btn:hover {
    background-color: #cc0000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .add-photo-btn {
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
        font-size: 35px;
    }
    
    .empty-album {
        bottom: 120px;
        right: 65px;
        max-width: 200px;
    }
    
    .empty-album p {
        font-size: 14px;
    }
    
    .empty-album-arrow {
        width: 72px;
        height: 72px;
        margin-right: 5px;
    }
    
    .preview-close-btn {
        width: 40px;
        height: 40px;
        font-size: 25px;
        top: 15px;
        right: 15px;
    }
    
    .preview-image {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .preview-content {
        max-width: 95%;
        gap: 30px;
    }
    
    .preview-download-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .preview-download-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .preview-close-btn {
        width: 40px;
        height: 40px;
        font-size: 25px;
        top: 15px;
        right: 15px;
    }
}
