/* RESET AND BASE STYLES */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    line-height: 1.4;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
}

/* CONTAINER STYLES */
.container {
    width: 90%;
    max-width: 1200px;
}

/* TITLE STYLES */
.site-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
}

/* TEXT AREA STYLES */
textarea {
    width: 100%;
    height: 20vh;
    padding: 1rem;
    margin: 1rem 0;
    border: 2px solid #ccc;
    border-radius: 8px;
    resize: none;
    font-size: 1rem;
    background-color: white;
}

textarea:focus {
    outline: none;
    border-color: #666;
}

/* BUTTON STYLES */
button {
    display: block;
    width: 100%;
    padding: 1rem;
    margin: 1rem 0;
    border: none;
    border-radius: 8px;
    background-color: #007bff;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #0056b3;
}

button:active {
    transform: translateY(1px);
}

/* OUTPUT SECTION STYLES */
#outputSection {
    display: none;
    width: 100%;
}

/* RESPONSIVE SPACING */
.spacing {
    margin: 1rem 0;
}