html, body {
    height: 100vh;
    width: 100%;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-image: url('/static/rooms/images/hypno.png');
    background-size: 350px 350px;
    background-repeat: repeat;
    user-select: none;
    filter: hue-rotate(58deg);
}

.navbar-title-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #ffffff;
}

/* Główny kontener */
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

/* Treść strony (wypełnia przestrzeń) */
.content {
    width: 100%;
    flex-grow: 1;
    place-items: center;
    font-family: 'Poppins', serif;
}

/* Stopka */
footer {
    background-color: #116072;
    color: white;
    padding: 20px;
    text-align: center;
    height: 40px;
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-text{
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 18px;
    color: white;
}



p {
    font-size: 14px;
    color: #116072;
}

.user-name-text{
    font-weight: bold;
}

.subtitle{
    margin-top: -15px;
}


.navbar {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #116072;
    color: white;
    width: 100%;
    padding: 10px 0;
    position: relative;
}

.navbar-left {
    display: flex;
    align-items: center;
    padding: 0 10px;
    margin-bottom: 1px;
}

.navbar-logo {
    margin-bottom: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.navbar-logo img {
    height: 80px;
    width: auto;
}

.navbar-title {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #116072;
    color: white;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 17px;
    text-align: center;
    margin-bottom: -5px;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 1px;
    margin-right: 15px;
}

.user-info {
    font-size: 16px;
    color: white;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px;
}

.home-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-decoration: none;
    margin-right: 10px; 
}

.home-link svg {
    width: 40px;
    height: 40px;
    transition: transform 0.2s ease-in-out;
}

.home-link:hover svg {
    transform: scale(1.15);
}

.navbar-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.navbar-link:hover {
    background-color: rgba(67, 155, 175, 0.5);
}

.navbar a:hover {
    background-color: rgba(67, 155, 175, 0.5);
    border-radius: 5px;
}

.navbar form {
    display: inline-block;
}

.navbar button {
    color: white;
    background-color: transparent;
    border: 2px solid white;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.navbar button:hover {
    background-color: rgba(67, 155, 175, 0.3);
    color: white;
    border-color: white;
}

.admin_section, .faq_section {
    width: 80%;
    background-color: white;
    padding: 20px;
    margin-top: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.admin_title, .faq_title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}
.admin_list {
    list-style-type: none;
    padding: 0;
}
.admin_list li {
    font-size: 16px;
    margin: 5px 0;
}
.faq_box {
    margin-top: 5px;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.faq_question_title {
    padding-bottom: 12px;
    font-weight: bold;
    font-size: 16px;
    color: #116072;
}

.faq_question_answer {
    width: 85%;
    margin: 5px auto; /* Wyśrodkowanie poziome */
    text-align: center; /* Wyśrodkowanie tekstu */
    font-size: 15px;
    margin-top: 5px;
    margin-bottom: 30px;
}


@media (max-width: 1000px) {
    p{
        font-size: 0.5rem;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 6px;
        padding-top: 40px;
    }

    .navbar-title {
        padding-top: 10px;
    }

    .navbar-title-text {
        font-size: 1rem;
        padding-bottom: 6px;
    }

    .navbar-left{
        margin-bottom: -2px;
        margin-left: 4px;
        gap: 3px;
    }

    .navbar-right{
        margin-right: 4px;
        gap: 3px;
    }

    .navbar-left,
    .navbar-right {
        padding: 0px 0px;
        display: flex;
        align-items: center;
    }

    .home-link{
        margin-right: 2px;
        margin-bottom: 2px;
    }

    .home-link svg {
        width: 22px;
        height: 22px;
    }

    .navbar a {
        font-size: 10px;
        margin-top: 14px;
        padding: 8px 4px;
    }

    .navbar-logo img {
        margin-bottom: 60px;
        height: 55px;
    }

    .user-info {
        margin-top: 16px;
        font-size: 10px;
        white-space: nowrap;
    }

    .navbar button {
        margin: 5px;
        margin-top: 20px;
        padding: 4px 4px;
        font-size: 10px;
        border: 1.5px solid white;
    }

    .menu-container {
        width: 80%;
        margin: 5px;
        margin-top: 25px;
        padding: 0;
    }

    .menu-item {
        width: 150px;
        height: 20%;
        padding: 15px;
        border: 1px solid #2d90a6;
        line-height: 100%;
        font-size: 0.6rem;
        border-radius: 5px;
        margin-bottom: 7px;
    }

    .footer-text{
        font-size: 0.7rem;
        padding: 2px;
    }

    .login-container {
        width: 190px;
        padding-left: 5px;
        padding-right: 6px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .login-container h2 {
        font-size: 0.5rem;
        margin-bottom: 3px;
    }

    .input-container{
        margin-bottom: 1px;
    }

    .input-container input {
        width: 70%;
        padding: 4px;
        font-size: 0.45rem;
        border: 1.5px solid #439BAF;
        border-radius: 4px;
    }


    .button-container button {
        width: 70%;
        padding: 5px;
        font-size: 0.5rem;
    }
    
    .admin_section, .faq_section {
        width: 85%;
        background-color: white;
        padding: 10px;
        margin-top: 10px;
        border-radius: 15px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }

    .admin_title, .faq_title {
        font-size: 13px;
        font-weight: bold;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .admin_list {
        list-style-type: none;
        padding: 0;
        margin-top: 8px;
    }

    .admin_list li {
        font-size: 10px;
        margin: 1px 0;
    }

    .faq_box {
        margin-top: 10px;
        padding: 10px;
        border-bottom: 1px solid #ccc;
    }

    .faq_question_title {
        padding-bottom: 5px;
        font-weight: bold;
        font-size: 10px;
        color: #116072;
    }

    .faq_question_answer {
        width: 90%;
        margin: 5px auto;
        text-align: center;
        font-size: 8px;
        margin-top: 5px;
    }
}