body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}
.container {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h1 {
    color: #007acc;
    text-align: center;
}
form {
    margin-top: 20px;
}
label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}
input, textarea, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}
textarea{
    resize: none;
}
button {
    user-select: none;
    background-color: #007acc;
    color: #fff;
    border: none;
    cursor: pointer;
}
button:hover {
    background-color: #005f99;
}
.note {
    font-size: 0.9em;
    color: #666;
}
#lb-noapi{
    display: flex;
    width: 100%;
    height: 35px;
    justify-content: start;
    align-items: center;
    gap: 3px;
    user-select: none;
}
#lb-noapi input{
    margin: 0;
    width: 20px;
    height: 20px;
    
}
.homeBTN{
    background-color: #007acc;
    color: white;
    width: 110px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 550;
    border-radius: 12px;
    user-select: none;
    transition: 0.3s;
}
.homeBTN a{
    text-decoration: none;
    color: white;
}
.homeBTN:hover{
    box-shadow: 0 2px 4px black;
}