/* Tela de erro em tela cheia */
.error-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: -webkit-box;      /* IE9 fallback */
    display: -ms-flexbox;       /* IE10 */
    display: flex;
    -webkit-box-pack: center;  /* IE9 fallback */
    -ms-flex-pack: center;      /* IE10 */
    justify-content: center;
    -webkit-box-align: center;  /* IE9 fallback */
    -ms-flex-align: center;     /* IE10 */
    align-items: center;
    z-index: 9999;
}

/* Wrapper central do conteúdo (texto) */
.error-content {
    text-align: center;
    padding: 20px;
}

/* Texto exibido no erro */
.error-text {
    color: #ff0000;
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
    padding: 20px;
    word-wrap: break-word;
    max-width: 90%;
    line-height: 1.5;
    text-align: center;
}

/* Container de informações adicionais */
.error-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

/* Texto de informações (hotel/room) */
.error-info-text {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 300;
    margin: 10px 0;
    padding: 0;
    text-align: center;
}

.error-info-text strong {
    color: #ffff00;
    font-weight: 600;
}

