/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos generales del cuerpo */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(135deg, #0077a5, #00da87);
    width: 100%;
}

/* Estilos del contenido principal */
main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
}

/* Estilos de los enlaces */
a {
    text-decoration: none;
}

/* Estilo general del aviso del ticket */
.ticket-alert {
    position: absolute;
    background-color: #f9f9f9;
    border: 1px solid #ff9800;
    border-radius: 8px;
    padding: 5px 10px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.ticket-alert .ticket-link {
    color: #ff9800;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.ticket-alert .ticket-link:hover {
    color: #ffffff;
    background-color: #ff9800;
    border-radius: 8px;
    padding: 5px 10px;
    transition: all 0.3s ease-in-out;
}

h1 {
    margin: 0;
    font-size: 2em;
    color: #333;
}

button, .button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
}

/* Floating buttons */
.floating-button {
    position: fixed;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: #0077a5;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 999;
}

.floating-button a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    font-size: 30px;
    font-weight: bold;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
}

.floating-button-right {
    right: 20px;
}

.floating-button-left {
    left: 20px;
}