* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #08041b;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background-color: #211e33;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
}

h1, h2 {
    margin-bottom: 20px;
}

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

label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

textarea, input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
}

textarea {
    height: 100px;
    resize: none;
}

select {
    appearance: none;
    cursor: pointer;
}

.error {
    color: #ff4d4d;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.generate-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #ff8c00, #ff4d4d);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.generate-btn:hover {
    background: linear-gradient(to right, #ff9c33, #ff6666);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.results-header h2 {
    font-size: 20px;
}

.copy-buttons button {
    padding: 5px 10px;
    margin-left: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
}

.copy-buttons button:hover {
    background-color: #444;
}

#results {
    width: 100%;
    height: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    overflow-y: auto;
    resize: none;
}

.results-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.download-btn, .new-search-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.download-btn {
    background-color: #ff8c00;
}

.download-btn:hover {
    background-color: #ff9c33;
}

.new-search-btn {
    background-color: #ff4d4d;
}

.new-search-btn:hover {
    background-color: #ff6666;
}