/* Global Styles */
body {
    background-color: #202123; /* Dark charcoal background */
    color: #d1d5db; /* Light gray text */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 700px;
    width: 90%;
    padding: 2rem;
}

/* Header */
.header {
    font-size: 2.5rem; /* Adjust size as needed */
    font-weight: 500;
    margin-bottom: 2rem;
    color: #ececf1; /* Slightly brighter white/gray */
}

.asterisk {
    color: #FF7A00; /* Orange accent */
    margin-right: 0.5rem;
}

/* Input Area */
.input-area {
    margin-bottom: 1.5rem;
}

#klawd-input {
    width: 100%;
    min-height: 100px; /* Adjust height as needed */
    background-color: #343541; /* Slightly darker input background */
    color: #ececf1;
    border: 1px solid #565869; /* Subtle border */
    border-radius: 12px; /* Rounded corners */
    padding: 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
    resize: none; /* Prevent resizing */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#klawd-input::placeholder {
    color: #8e8ea0;
}

#klawd-input:focus {
    outline: none;
    border-color: #7a7b8c;
}

/* Token Info Area */
.token-info {
    background-color: #343541; /* Match input background */
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #565869;
    margin-top: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.token-info p {
    margin: 0.5rem 0;
    color: #d1d5db;
}

#token-link {
    color: #FF7A00; /* Orange link */
    text-decoration: none;
    font-family: monospace;
    word-break: break-all;
    font-size: 1rem;
}

#token-link:hover {
    text-decoration: underline;
}

/* Utility */
.hidden {
    display: none;
}

/* Basic Responsiveness */
@media (max-width: 600px) {
    .header {
        font-size: 2rem;
    }
    #klawd-input {
        font-size: 1rem;
    }
    .container {
        width: 95%;
        padding: 1rem;
    }
}

