/* NATIVE */
* {
  font-family: 'Ubuntu Sans Mono', monospace;
}

body {
    background: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

h1 {
    color: white;
    text-align: center;
}

h2 {
    color: white;
    text-align: center;
}

p {
    color: white;
    text-align: center;
}

input, select {
    margin: 5px;
    border-radius: 5px;
    padding: 8px;
    flex: 1;
    text-align: center;
    border: none;
    outline: none;
}

input[type="number"]:hover {
    background-color: #f0f0f0;
    transition: background-color 0.2s;
}

input[type="number"]:focus {
    outline: 2px solid #4CAF50;
}

form {
    width: 100%;
    max-width: 500px;
}

fieldset {
    margin: 5px;
    color: white;
    border-color: rgb(22, 54, 192);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

label {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

button {
    padding: 10px;
    margin-top: 10px;
    background-color: rgb(22, 54, 192);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: rgb(30, 70, 250);
}

/* CUSTOM */


#resultat-container {
    width: 100%;
    max-width: 550px;
    text-align: center;
}

.advview {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#advviewbtn {
    color: black;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    background-color: #00ff00d0;
}

#advviewbtn:hover {
    transform: translateY(-2px);
}

.hidden-text {
    display: none;
}

.hidden-text.show {
    display: block;
    text-align: center;
}

.important {
    color: red;
    font-weight: bold;
}

.profile-selector {
    font-size: 14px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: fit-content;
}

@media (max-width: 768px) {
    .advview {
        bottom: 15px;
        right: 15px;
    }
}