/*================================================
                        __
 _    ___    ___    __ / /____  __ _ ___ _______   ___  _______
| |/|/ | |/|/ | |/|/ _/ __/ _ \/  ' / _ `(_-/_ /_ / _ \/ __/ _ \
|__,__/|__,__/|__,__(_\__/\___/_/_/_\_,_/___/__(_/ .__/_/  \___/
                                                /_/
style.css by www.tomasz.pro 2023-2025

/*================================================*/

@font-face {
    font-family: 'HemiHead';
    src: url('/fonts/HemiHead/Hemi Head Bd It.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/*================================================*/
/*  Tło*/
/*================================================*/
.background {
    position: absolute;
    background-image: url('https://www.tomasz.pro/img/bg/background.webp');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.background-offer-web {
    position: absolute;
    background-image: url('https://www.tomasz.pro/img/offer/web/web-hotel.webp');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
/*================================================*/
/*  Aplikacja*/
/*================================================*/

.horizontal-line {
    width: calc(100% + 40px);
    margin: 20px -20px 0;
    border-top: 0.5px solid rgb(0, 0, 0);
}
/*=======================================================*/
/*Keyboard*/
#virtualKeyboard {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    grid-gap: 10px;
    padding: 20px;
    background-color: transparent;
}
.control-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
#text {
    width: 60%;
    height: 40px;
    padding: 5px;
    border: 1px solid #03e9f4;
    border-radius: 5px;
    font-size: 14px;
    color: #03e9f4;
    background-color: transparent;
}
#text:focus {
    box-shadow: 0 0 10px #fff;
}
.row {
    display: flex;
    justify-content: center;
}
.key {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin: 5px;
    background-color: transparent;
    border: 1px solid #03e9f4;;
    border-radius: 5px;
    color: #03e9f4;;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}
.key:hover {
    background-color: #03e9f4;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 232, 244, 0.4);
}
.key:active {
    background-color: #03e9f4;
    transform: scale(0.95);
}
.key.wide {
    width: 100px;
}

.key.extra-wide {
    width: 150px;
}
/*=============================================*/
/*baner*/
#banner-title {
    font-family: "Iceland", sans-serif;
}
@media only screen and (max-width: 1000px) {
    #banner-title {
        margin-bottom: 5%;
    }
}
/*=============================================*/
/*server-status*/
div#server-status {
    width: 100%;
}

#server-status p {
    margin-bottom: 0;
    text-align: start;
}

.server-card {
    display: flex;
    padding: 5px 10px;
}

.server-name {
    flex: 1;
}

.server-status {
    width: 125px;
    display: flex;
    align-items: center;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

.server-status.online .status-dot {
    background-color: #28a745;
}

.server-status.offline .status-dot {
    background-color: #dc3545;
}

.server-ping {
    width: 100px;
    text-align-last: right;
    font-family: monospace;
}