    /* Variables de color */
    :root {
        --verde: #faf6ea;
    }

    html {
        overflow-x: hidden;
    }
    
    body {
        font-family: 'Handlee';
        overflow-x: hidden;
        background: #faf6ea;
    }
    
    /* TipografÃ­a para todos los h1 */
    h1 {
        font-family: 'Crafty Girls', cursive;
    }
    
    /* Pantalla de IntroducciÃ³n */
    .intro-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #faf6ea;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        cursor: pointer;
        transition: opacity 1s ease-out;
    }
    
    .intro-screen.fade-out {
        opacity: 0;
        pointer-events: none;
    }
    .col-3.noborder {
        border: none !important;
    }
    
    .intro-title {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        font-weight: 700;
        color: white;
        text-align: center;
        margin-bottom: 3rem;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .intro-image {
        width: 50vh;
        height: 50vh;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        margin-bottom: 2rem;
    }
    
    .intro-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: white;
        background: rgba(255,255,255,0.2);
        backdrop-filter: blur(10px);
    }
    
    /* Responsive para pantalla de introducciÃ³n */
    @media (max-width: 768px) {
        .intro-title {
            font-size: 2rem;
            margin-bottom: 2rem;
        }
        
        .intro-image {
            width: 40vh;
            height: 40vh;
        }
        
        .intro-icon {
            width: 60px;
            height: 60px;
            font-size: 2rem;
        }
    }
    
    .section-full {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
    }
    section {
        width: 100%;
        padding: 0px !important;
    }
    
    .container {
        padding: 0;
    }
    
    .logo-section {
        background: #faf6ea;
    }
    
    .invited-section {
        background: #faf6ea;
        padding-bottom: 25px !important;
    }
    
    .blessing-section {
        background: #faf6ea;
        padding-top: 0;
        margin-top: 20px;
        padding-bottom: 25px !important;
        position: relative;
        overflow: visible;
    }
    
    .location-section {
        /* background: #faf6ea url('../icons/linea_fondo.png') repeat-y; */
        background-size: auto;
        background-position: top center;
        padding-bottom: 30px !important;
    }
    
    .dresscode-section {
        background: #faf6ea;
        padding-bottom: 40px !important;
    }
    
    .confirm-section {
        background: #faf6ea;
        padding-top: 15px !important;
    }
    
    .gifts-section {
        /* background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%); */
    }
    
    .photos-section {
        background: #faf6ea;
    }
    .confirm-section h2.section-title {
        /* text-transform: uppercase; */
        /* font-size: 6vmin; */
        /* font-weight: bolder; */
    }
    
    .no-kids strong {
        color: #faf6ea;
    }
    .wedding-title {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        font-weight: 700;
        color: #000000;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    
    .wedding-date {
        font-size: 1.5rem;
        color: #000000;
        margin-bottom: 0rem;
        font-weight: 600;
    }
    
    .couple-names {
        font-size: 10vmin !important;
        font-weight: 600;
        color: #74291f;
        /* margin-bottom: -4rem; */
        /* text-shadow: 0px 2px 3px #e5f47f; */
        z-index: 999 !important;
        /* position: relative; */
    }
    
    .section-title {
        font-family: 'Crafty Girls', cursive;
        font-size: 2.5rem;
        font-weight: 700;
        color: #74291f;
        /* margin-bottom: 1.5rem; */
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        color: #000000;
        text-align: center;
        margin-bottom: 40px;
        font-weight: 600;
        margin-top: -10px;
        font-family: 'Crafty Girls';
    }
    
    .section-text {
        font-size: 1.2rem;
        color: #555;
        text-align: center;
        margin-bottom: 2rem;
        /* max-width: 600px; */
        font-weight: 600;
    }
    
    .countdown {
        /* background-image: url('../images/fondo_contador.png'); */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 22px 0rem;
        border-radius: 15px;
        margin: 2rem 0rem 1rem;
        height: 100px;
    }
    
    .countdown-item {
        text-align: center;
        margin: 0px 0rem;
    }
    
    .countdown-number {
        margin-bottom: -10px;
        font-size: 2.5rem;
        font-weight: 700;
        color: #9c9851;
        display: block;
    }
    
    .countdown-label {
        font-size: 11px;
        color: #000000;
        /* text-transform: uppercase; */
        letter-spacing: 1px;
        font-family: 'Crafty Girls', cursive;
    }
    
    .btn-transparent {
        background: transparent;
        border: 2px solid #e4911e;
        color: #333;
        padding: 12px 30px;
        border-radius: 25px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    
    .btn-transparent:hover {
        background: #333;
        color: white;
        transform: translateY(-2px);
    }
    
    .gift-buttons-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .btn-deposito {
        background-color: #faf6ea;
        border: 4px solid #9c9855;
        color: #000;
        padding: 2px 24px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        align-items: center;
        margin: 0;
        font-size: 1rem;
        font-family: 'Handlee', cursive;
        position: relative;
        width: 144px;
    }
    
    .btn-deposito:hover {
        opacity: 0.9;
        transform: translateY(-2px);
        color: #000;
        text-decoration: none;
    }
    
    .btn-deposito-icon {
        width: auto;
        height: auto;
        max-width: 36px;
        max-height: 36px;
        object-fit: contain;
        margin-left: 145px;
        margin-top: -30px;
        z-index: 9;
    }
    
    .carousel-container {
        position: relative;
        height: 270px;
        overflow: hidden;
        margin: 2rem 0;
    }
    
    .carousel-photo {
        position: absolute;
        width: 200px;
        height: 300px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        transition: all 0.5s ease;
    }
    
    .carousel-photo:nth-child(1) {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }
    
    .carousel-photo:nth-child(2) {
        top: 20px;
        left: 30%;
        transform: translateX(-50%);
        z-index: 2;
    }
    
    .carousel-photo:nth-child(3) {
        top: 40px;
        left: 70%;
        transform: translateX(-50%);
        z-index: 1;
    }
    
    /* Dresscode Cards Container */
    .dresscode-cards-container {
        margin-top: 2rem;
        gap: 0;
        position: relative;
        padding: 0px 25px;
    }
    
    .dresscode-card {
        position: relative;
        padding: 1.5rem 1rem 0.4rem;
        border-radius: 20px;
        min-height: 300px;
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
        overflow: hidden;
    }
    
    
    .dresscode-card::after {
        content: '';
        position: absolute;
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background: #faf6ea;
        z-index: 5;
        border: none;
    }
    
    .dresscode-card-woman {
        background-color: #ff9600; /* Naranja */
        color: white;
    }
    
    .dresscode-card-man {
        background-color: #9c9855; /* Verde oliva */
        color: white;
    }
    
    .dresscode-branch {
        position: absolute;
        width: auto;
        height: auto;
        max-width: 150px;
        max-height: 150px;
        z-index: 1;
        object-fit: contain;
    }
    
    .branch-top-right {
        top: -5px;
        right: 0px;
    }
    
    .branch-top-left {
        top: -5px;
        left: 0px;
    }
    
    .dresscode-title {
        font-size: 2.5rem;
        font-weight: 400;
        margin-top: 40px;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 2;
        font-family: 'Handlee', cursive;
        font-weight: 600;
    }
    
    .dresscode-title-left {
        text-align: left;
    }
    
    .dresscode-title-right {
        text-align: right;
    }
    
    .dresscode-instruction-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        position: relative;
        z-index: 2;
        margin-bottom: 0.3rem;
    }
    
    .dresscode-instruction {
        font-size: 1rem;
        margin: 0;
        position: relative;
        z-index: 2;
        line-height: 1.4;
        flex: 0 1 auto;
        font-size: 17px;
    }
    
    .dresscode-card-man .dresscode-instruction {
        font-size: 17px;
        margin-bottom: 0.5rem;
        text-align: right;
    }
    
    .dresscode-instruction-continue {
        font-size: 17px;
        margin-top: -10px;
        margin-bottom: 1rem;
        position: relative;
        z-index: 2;
        font-weight: 400;
        text-align: left;
    }
    
    .dresscode-exception-wrapper-man {
        display: ruby;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        position: relative;
        z-index: 2;
        margin-bottom: 17px;
        text-align: right;
        float: right;
        margin-top: -7px;
    }
    
    .dresscode-exception-label {
        font-size: 1rem;
        margin-bottom: 0;
        position: relative;
        z-index: 2;
        font-weight: 400;
    }
    
    .dresscode-card-man .dresscode-exception-label {
        font-size: 17px;
        margin: 0;
    }
    
    .dresscode-exception-box-man {
        flex-shrink: 0;
    }
    
    .dresscode-exception-box {
        background-color: rgba(255, 255, 255, 0.9);
        color: #333;
        padding: 1px 20px;
        border-radius: 4px;
        display: inline-block;
        margin: 0;
        position: relative;
        z-index: 2;
        font-weight: 600;
        flex-shrink: 0;
        align-self: flex-start;
    }
    
    .dresscode-inspiration {
        font-size: 17px;
        margin-top: 0px;
        margin-bottom: 1rem;
        position: relative;
        z-index: 2;
        font-weight: 400;
    }
    
    .dresscode-link {
        display: inline-block;
        position: relative;
        z-index: 2;
        text-decoration: none;
        transition: opacity 0.3s ease;
        margin-top: 0.5rem;
        text-align: center;
    }
    
    .dresscode-link:hover {
        opacity: 0.8;
    }
    
    .dresscode-link-img {
        width: auto;
        height: auto;
        max-width: 150px;
        max-height: 50px;
        display: inline;
        object-fit: contain;
    }
    
    .separator {
        border-left: 2px solid #333;
        height: 100px;
        margin: 0 auto;
    }
    
    .confirm-text {
        font-size: 1.5rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 1rem;
    }
    
    .no-kids {
        padding: 1rem 2rem;
        color: #000000;
        margin-top: 2rem;
    }
    
    .icon-large {
        font-size: 4rem;
        color: #333;
        margin-bottom: 1rem;
    }
    
    .horizontal-image {
        width: 100%;
        max-width: 800px;
        /* height: 100%; */
        /* aspect-ratio: 1 / 1; */
        /* object-fit: cover; */
        border-radius: 15px;
        /* margin: 2rem 0; */
        text-align: center;
        margin-top: 15px;
    }
    
    .square-image {
        width: 300px;
        height: 300px;
        object-fit: cover;
        border-radius: 15px;
        margin: 2rem 0;
    }
    
    .vertical-image {
        width: 200px;
        height: 300px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    
    .logo-image {
        width: 256px;
        height: 256px;
        border-radius: 50%;
        /* box-shadow: 0 10px 30px rgba(0,0,0,0.2); */
        margin-top: 20px;
    }
    
    .icon-placeholder {
        width: 256px;
        height: 256px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        color: #333;
        background: transparent;
        margin: 2rem 0;
    }
    
    .icon-small {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: #333;
        background: #f8f9fa;
        margin: 1rem auto;
    }
    
    .big-date {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0px;
        margin: 1rem 0;
        text-align: center;
        position: relative;
        margin-bottom: 45px;
    }
    
    .big-date-item {
        height: auto;
        max-width: 150px;
        display: block;
    }
    
    .big-date-07 {
        max-width: 200px;
        z-index: 2;
        opacity: 0;
        transform: translateY(100px);
    }
    
    .big-date-07.animate {
        animation: slideInFromBottom 1s ease-out forwards;
        animation-delay: 0.2s;
    }
    
    .big-date-marzo {
        opacity: 0;
        transform: translateX(-100px);
    }
    
    .big-date-marzo.animate {
        animation: slideInFromLeft 1s ease-out forwards;
    }
    
    .big-date-16 {
        opacity: 0;
        transform: translateX(100px);
    }
    
    .big-date-16.animate {
        animation: slideInFromRight 1s ease-out forwards;
    }
    
    @keyframes slideInFromLeft {
        from {
            opacity: 0;
            transform: translateX(-100px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes slideInFromRight {
        from {
            opacity: 0;
            transform: translateX(100px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes slideInFromBottom {
        from {
            opacity: 0;
            transform: translateY(100px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .parents-names {
        font-size: 8vmin;
        color: #555555;
        text-align: center;
        /* line-height: 1.8; */
        margin: 1rem 0;
        font-weight: bold;
        font-family: fangsong;
    }
    
    /* Custom Audio Player Styles - Exact match to image */
    .audio-player-custom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 2rem 0;
        padding: 20px;
    }
    
    .progress-container {
        position: relative;
        width: 300px;
        height: auto;
        cursor: pointer;
        display: flex;
        align-items: center;
    }
    
    .progress-line-img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .progress-handle-img {
        position: absolute;
        top: 50%;
        left: 30%;
        width: auto;
        height: auto;
        max-width: 20px;
        max-height: 20px;
        transform: translate(-50%, -50%);
        cursor: grab;
        transition: left 0.1s ease;
    }
    
    .progress-handle-img:active {
        cursor: grabbing;
    }
    
    .controls-container {
        display: flex;
        align-items: center;
        gap: 30px;
    }
    
    .control-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        outline: none;
    }
    
    /* Audio player icons - using images */
    .icon-img {
        display: block;
        width: auto;
        height: auto;
        max-width: 50px;
        max-height: 50px;
        object-fit: contain;
    }
    
    .prev-icon-img {
        transform: rotate(180deg);
        width: 40px;
        height: 40px;
    }
    
    .play-pause-icon {
        width: 50px;
        height: 50px;
    }
    
    .next-icon-img {
        width: 40px;
        height: 40px;
    }
    /* Hover effects */
    .control-btn:hover .icon-img {
        opacity: 0.8;
    }
    
    /* Audio element hidden */
    #weddingAudio {
        display: none;
    }
    
    /* Animaciones */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .animate-fadeInUp {
        animation: fadeInUp 0.8s ease-out;
    }
    .invited-section img.horizontal-image, .blessing-section .horizontal-image, .location-section .horizontal-image {
        margin: 0px;
    }
    
    .invited-section h2.section-title {
        font-size: 10vmin;
        font-family: 'Crafty Girls', cursive;
    }
    
    .countdown .row div.col-3 {
        border-right: 1px solid black;
        padding: 0 !important;
    }
    
    .countdown .row {
        width: 100%;
        display: inline-flex;
    }
    
    .logo-section img.horizontal-image.animate-fadeInUp {
        /* aspect-ratio: 1 / 1; */
        width: 80%;
    }
    
    h2.section-title, p.section-text {
        padding: 0px 25px;
    }
    
    .blessing-section h2.section-title {
        margin-top: -25px;
        font-size: 8vmin;
        font-family: cursive;
    }
    
    .section-title-ceremonia {
        color: #faf6ea;
        font-size: 5vmin;
        font-weight: 100;
    }
    .section-title-dresscode {
        color: white;
        font-size: 5vmin;
        font-weight: 400;
    }
    
    .section-title-formal {
        font-weight: 600;
        text-transform: uppercase;
        font-size: 5vmin;
    }
    
    .dresscode-section p.section-text {
        color: black;
        margin-bottom: 0px;
    }
    .section-title-recepcion {
        font-size: 9vmin;
        font-weight: 100;
        margin-top: 20px;
        font-family: 'Handlee';
        display: inline-block;
        color: #9f9950;
        font-weight: 700;
    }
    .section-title-ceremonia {
        color: #000000;
        font-size: 5vmin;
        font-weight: 100;
    }
    .section-title p {
        line-height: 25px;
        font-family: 'Handlee';
    }
    p.section-title-blessing {
        background: #9f9c58;
        color: #faf6ea;
        padding: 15px 0px;
    }
    
    .blessing-section .section-title {
        margin-top: -20px;
        position: relative;
    }
    img.bendicion-image {
        margin-top: -65px;
    }
    img.map-image {
        width: 100%;
    }
    
    .separador {
        width: 100%;
        height: 40px;
    }
    img.soloadultos-image {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    h2.section-title.title-cierre {
        font-size: 6vmin;
        margin-top: 50px;
    }
    a.btn.btn-agendar {
        display: inline-grid;
    }
    
    a.btn.btn-agendar span {
        font-weight: 900;
    }
    
    .blessing-section img.hojitas1-image.imagen-flotante {
        position: absolute;
        top: 60%;
        right: -29%;
        width: auto;
        height: auto;
        /* max-width: 180px; */
        /* max-height: 250px; */
        z-index: 0;
        pointer-events: none;
        float: right;
    }
    
    .blessing-section img.hojitas2-image.imagen-flotante {
        position: absolute;
        bottom: -7%;
        left: -3%;
        width: auto;
        height: auto;
        /* max-width: 150px; */
        /* max-height: 200px; */
        z-index: 5;
        pointer-events: none;
    }
    
    img.hojitas3-image.imagen-flotante {
        position: absolute;
        top: 35%;
        left: -10%;
        width: auto;
        height: auto;
        z-index: 0;
        pointer-events: none;
    }
    
    img.hojitas4-image.imagen-flotante {
        position: absolute;
        top: 65%;
        left: -16%;
        width: auto;
        height: auto;
        z-index: 5;
        pointer-events: none;
    }

    img.hojitas5-image.imagen-flotante {
        position: absolute;
        bottom: -36%;
        right: -26%;
        width: auto;
        height: auto;
        z-index: 5;
        pointer-events: none;
    }

    img.chirulo-image.imagen-flotante {
        position: absolute;
        bottom: -64%;
        left: 0;
        width: auto;
        height: auto;
        z-index: 5;
        pointer-events: none;
    }
    
    section.section-full.location-section,
    section.section-full.confirm-section{
        position: relative;
        overflow: visible;
    }
    p.section-text.text-regalos {
        max-width: 300px;
        text-align: center;
        display: inline-flex;
    }

    .gift-cash-row {
        margin-bottom: 47px;
    }

    h3.section-title.title-cierre-final {
        font-size: 12px;
        margin-top: -45px;
        margin-bottom: 15px;
    }
    div#pases {
        font-size: 13vmin;
        color: #9c9851;
        line-height: 26px;
        margin-top: 45px;
    }

    
    /* Responsive */
    @media (max-width: 768px) {
        .wedding-title {
            font-size: 2rem;
        }
        
        .couple-names {
            font-size: 1.8rem;
        }
        
        .section-title {
            font-size: 10vmin;
        }
        
        .countdown-number {
            font-size: 7vmin;
        }
        
        .big-date {
            font-size: 2rem;
        }
        
        .carousel-photo {
            width: 150px;
            height: 225px;
        }
        
        .logo-image, .icon-placeholder {
            width: 115px;
            height: auto;
            margin-bottom: 15px;
        }
        
        .dresscode-cards-container {
            margin-top: 1.5rem;
        }
        
        .dresscode-card {
            margin-bottom: 20px;
            min-height: 300px;
            padding: 1.5rem 1rem 0.4rem;
        }
        
        .dresscode-title {
            font-size: 2rem;
        }
        
        .dresscode-instruction,
        .dresscode-instruction-continue,
        .dresscode-exception-label {
            font-size: 17px;
        }
        
        .dresscode-inspiration {
            font-size: 17px;
        }
        
        .dresscode-link {
            font-size: 1rem;
        }
    }
    
    @media (min-width: 769px) {
        .dresscode-cards-container {
            display: flex;
        }
        
        .dresscode-card {
            margin-bottom: 0;
        }
    }

/* ============================================
   Modal de Confirmación de Invitados
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

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

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #BEA27B;
    margin-bottom: 15px;
    text-align: center;
}

.modal-subtitle {
    font-family: 'Handlee', cursive;
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
}

.modal-lista-invitados {
    margin-bottom: 30px;
}

.invitado-linea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
}

.invitado-linea:hover {
    border-color: #BEA27B;
    background-color: #f9f9f9;
}

.invitado-linea.seleccionado {
    background-color: #4CAF50;
    border-color: #4CAF50;
    color: #fff;
}

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

.invitado-nombre {
    font-family: 'Handlee', cursive;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.invitado-linea.seleccionado .invitado-nombre {
    color: #fff;
}

.invitado-estado {
    font-size: 0.9rem;
    font-family: 'Handlee', cursive;
}

.invitado-linea.seleccionado .invitado-estado {
    color: #fff;
}

.estado-confirmado {
    color: #4CAF50;
    font-weight: 600;
}

.estado-pendiente {
    color: #ff9800;
    font-weight: 600;
}

.invitado-linea.seleccionado .estado-confirmado,
.invitado-linea.seleccionado .estado-pendiente {
    color: #fff;
}

.invitado-accion {
    font-family: 'Handlee', cursive;
    font-size: 0.95rem;
    color: #BEA27B;
    font-weight: 600;
    padding: 8px 15px;
    border: 1px solid #BEA27B;
    border-radius: 5px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.invitado-linea.seleccionado .invitado-accion {
    color: #fff;
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
}

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

.btn-modal {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-family: 'Handlee', cursive;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-confirmar {
    background-color: #4CAF50;
    color: #fff;
}

.btn-confirmar:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.btn-cancelar {
    background-color: #f44336;
    color: #fff;
}

.btn-cancelar:hover {
    background-color: #da190b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.3);
}

.modal-confirmacion-final {
    max-width: 600px;
}

.modal-mensaje-final {
    font-family: 'Handlee', cursive;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 20px;
        width: 95%;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-subtitle {
        font-size: 1rem;
    }
    
    .invitado-linea {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .invitado-accion {
        width: 100%;
        text-align: center;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .btn-modal {
        width: 100%;
    }
}
