body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2c2f33; /* Discord-like dark background */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: #36393f; /* Discord-like deeper dark */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    color: #7289da; /* Discord blue */
    margin-bottom: 25px;
    font-size: 1.8em;
}

.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #dcddde;
}

input[type="url"],
input[type="text"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #4f545c;
    border-radius: 5px;
    background-color: #40444b;
    color: #ffffff;
    font-size: 1em;
    box-sizing: border-box; /* Include padding in width */
    resize: vertical; /* Allow vertical resizing for textarea */
    min-height: 40px;
}

textarea {
    min-height: 80px;
}

input[type="file"] {
    background-color: #40444b;
    border: 1px solid #4f545c;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 0.95em;
}

input[type="file"]::file-selector-button {
    background-color: #7289da;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 15px;
    transition: background-color 0.2s ease;
}

input[type="file"]::file-selector-button:hover {
    background-color: #677bc4;
}

.file-info {
    font-size: 0.85em;
    color: #b9bbbe;
    margin-top: 5px;
    padding-left: 5px;
}

button {
    width: 100%;
    padding: 15px;
    background-color: #7289da;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    margin-top: 10px;
}

button:hover {
    background-color: #677bc4;
    transform: translateY(-1px);
}

button:active {
    transform: translateY(0);
}

.status {
    margin-top: 25px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    font-size: 1em;
}

.status.success {
    background-color: #43b581; /* Discord green */
    color: white;
}

.status.error {
    background-color: #f04747; /* Discord red */
    color: white;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        padding: 20px;
        margin: 15px;
    }

    h1 {
        font-size: 1.6em;
    }

    button {
        padding: 12px;
        font-size: 1em;
    }
}

