body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #0d1117;
    color: #c9d1d9;
    text-align: center;
}

.container, .wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: #161b22;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
}

h1, h2, h3 {
    color: #f0f6fc;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #f0f6fc;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #30363d;
    border-radius: 5px;
    font-size: 16px;
    background-color: #0d1117;
    color: #c9d1d9;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #58a6ff;
    box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.3);
}

button {
    background-color: #238636;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

button:hover {
    background-color: #2ea043;
    box-shadow: 0 0 20px rgba(35, 134, 54, 0.3);
}

.result, .output {
    background-color: #161b22;
    border: 1px solid #30363d;
    border-radius: 5px;
    padding: 15px;
    margin-top: 15px;
    color: #c9d1d9;
}