/* Dark Mode Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #1e1e1e !important;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}

.content{
  display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

img{
  width: 100vw;
  max-width: 400px;
}

.container {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    width: 99%;
    max-width: 700px;
    text-align: center;
    box-sizing: border-box;
}

.container h1 {
    color: #e0e0e0;
    font-size: 32px;
    margin-bottom: 20px;
}

.container input[type="text"],
textarea,
.container input[type="file"],
.container button {
    width: 90%;
    margin: 10px 0;
    padding: 15px;
    font-size: 16px;
    background-color: #333;
    border: 1px solid #444;
    border-radius: 5px;
    color: #e0e0e0;
}

.container textarea {
    min-height: 300px;
    resize: vertical;
    font-family: 'Courier New', monospace;
    background-color: #252525;
    border: 1px solid #555;
    color: #e0e0e0;
    font-size: 16px;
}

.container button {
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

.container button:hover {
    background-color: #218838;
}

#result {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #444;
    background-color: #2a2a2a;
    display: none;
    text-align: left;
}

a {
    color: #66b3ff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Responsiveness */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    input[type="text"],
    textarea,
    input[type="file"],
    button {
        font-size: 14px;
    }
}