body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background: rgb(247, 246, 246);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.espacio{
    height: 15vh;
}


.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0.75rem;
    background-color: white;
    width: 350px;
    height: 450px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.header {
    position: relative;
    background-clip: border-box;
    margin-top: 1.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: 0.75rem;
    background-color: rgb(33 150 243);
    box-shadow: 0 10px 15px -3px rgba(33, 150, 243, 0.4),
        0 4px 6px -4px rgba(33, 150, 243, 0.4);
    height: 14rem;
}

.info {
    border: none;
    padding: 1.5rem;
    text-align: center;
}

.title {
    color: rgb(55, 53, 70);
    letter-spacing: 0;
    line-height: 1.375;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

#nombreInvitacion {
    color: rgb(19, 186, 88);
    letter-spacing: 0;
    line-height: 1.375;
    font-weight: 600;

}

table {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    width: 100%;
}
tbody{
    width: 302px;
}

table tr {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin-bottom: 0.5rem;
}

table tr td {
    font-weight: 450;
    font-size: 0.875rem;
    color: rgb(81, 81, 81);
    letter-spacing: 0;
    line-height: 1.375;
    text-align: left;
    width: 100%;
}

.derecha {
    color: rgb(19, 186, 88);
    font-weight: 500;
    font-size: 1.0rem;
    letter-spacing: 0;
    width: 80%;
    padding-left: 30px;
}

.footer {
    padding: 0.8rem 2rem;
    border: 1px solid rgb(236, 241, 238);
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    background-color: rgba(0, 255, 153, 0.082);
    font-weight: 450;
    font-size: 1rem;
    color: rgb(65, 65, 65);
}

.tag {
    font-weight: 800;
    font-size: 0.75rem;
    display: block;
}

.action {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: none;
    outline: none;
    box-shadow: 0 4px 6px -1px rgba(33, 150, 243, 0.4),
        0 2px 4px -2px rgba(33, 150, 243, 0.4);
    color: rgb(255 255 255);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.75rem 1.5rem;
    background-color: rgb(33 150 243);
    border-radius: 0.5rem;
}


/* Alerta de erro */
.error {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    background: #79d179;
    border-radius: 8px;
    box-shadow: 0px 0px 5px -3px #111;
}

.error__icon {
    width: 30px;
    height: 30px;
    transform: translateY(1.5px);
    margin-right: 10px;
    margin-left: 20px;
}

.error__icon path {
    fill: #fff;
}

.error__title {
    font-weight: 500;
    font-size: 1.2rem;
    color: #fff;
}

.error__close path {
    fill: #fff;
}