body {
    font-family: Arial, sans-serif;
    padding: 0; /* Reset padding */
    margin: 0;  /* Remove default margin */
    background-color: #f4f4f9;
    width: 100%; /* Ensure the body takes up the full width */
    box-sizing: border-box; /* Include padding in width */
    color: #000000; /* Black text globally */
}


textarea {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    padding: 15px;
    font-size: 16px;
    color: #000000; /* Black text */
    border: 1px solid #000000; /* Black outline */
    outline: none; /* Remove default outline */
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tool-button {
    padding: 10px 25px;
    background-color: #000000;
    color: white;
    border: 1px solid #000000; /* Black outline */
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    margin-top: 15px;
    width: 250px;
    height: 45px;
}

.tool-button:hover {
    background-color: #222222;
}

.output {
    margin-top: 20px;
    border: 1px solid #000000; /* Black outline */
    padding: 20px;
    border-radius: 12px;
    background-color: #fff;
    max-height: 300px;
    overflow-y: auto;
    color: #000000; /* Black text */
}

h1 {
    color: #000000;
    font-size: 28px;
    text-align: center;
}

p {
    font-size: 16px;
    color: #000000;
}