body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Jasne tło */
}

input {
    padding: 10px;
    width: 300px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.button-container {
    display: flex;
    gap: 20px; /* Odstęp między przyciskami */
}

button{
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #007BFF; /* Stonowany niebieski kolor */
    color: white; /* Kolor tekstu */
    transition: background-color 0.3s ease; /* Animacja zmiany koloru */
}

button:hover {
    background-color: #0056b3; /* Ciemniejszy odcień niebieskiego po najechaniu */
}

h1 {
    color: #333; /* Kolor nagłówka */
}

p {
    color: #666; /* Kolor tekstu */
}

.tooltip {
    display: inline-block;
    position: relative;
    cursor: pointer;
    color: #007BFF;
    font-weight: bold;
    text-decoration: none;
}

.tooltip:hover::after {
    content: "Check our documentation";
    position: absolute;
    top: -25px;
    left: 0;
    background-color: #333;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 12px;
    z-index: 10;
}

/* Modern styled select for server list */
#server_select {
	width: 300px;
	padding: 10px 40px 10px 12px;
	margin-bottom: 20px;
	border: 1px solid #ccc;
	border-radius: 8px;
	background-color: #fff;
	/* Custom dropdown arrow */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px 16px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#server_select:focus {
	outline: none;
	border-color: #007BFF;
	box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

/* Improve select hover feedback */
#server_select:hover {
	border-color: #b3b3b3;
}