* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1e1e1e;
    color: #ddd;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    margin: 0;
}

.content {
    background: #2c2c2c;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 600px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #b3d9ff;
}

p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ccc;
}

.installation-box {
    background: #333;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

h2 {
    color: #f4f4f4;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.installer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

textarea {
    width: 100%;
    height: 40px; /* Ensure it stays on one line */
    font-size: 1.2rem;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #2a2a2a;
    color: #ccc;
    resize: none;
    box-sizing: border-box;
    overflow: hidden; /* Prevent overflow */
}

button {
    background-color: #4d93ff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #3c80e3;
}

button i {
    margin-right: 8px;
}

footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.windows-logo {
    font-size: 1.5rem; /* Adjusted size */
    color: #4d93ff;
}
