#BASE-BODY{
    flex: 1;
    background-color: #f4f6f8;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
}

#BASE-BODY h1 {
    margin-bottom: 30px;
    color: #333;
}

#BASE-BODY .button-container {
    display: flex;
    gap: 40px;
}

#BASE-BODY button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 14px 28px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    line-height: 20px;
}

#BASE-BODY button:hover {
    background-color: #45a049;
}

#BASE-BODY #textInputContainer {
    margin-bottom: 20px;
}

#BASE-BODY input[type="text"] {
    padding: 16px;
    width: 300px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-right: 10px;
    box-shadow: 1px 1px 2px #bdbdbd;
}

#BASE-BODY #result-white {
    margin-top: 30px;
    background-color: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    text-align: center;
}

#BASE-BODY img {
    margin-top: 15px;
    max-width: 100%;
    height: auto;
}

#BASE-BODY a {
    display: inline-block;
    margin-top: 10px;
    color: #2196F3;
    text-decoration: none;
}

#BASE-BODY a:hover {
    text-decoration: underline;
}