       #flashMessage {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1050;
            display: none;
        }
        #copyButton {
            position: absolute;
            top: 50px;
            right: 25px;
            z-index: 1;
        }
        #codeContainer {
            position: relative;
        }
        #footer {
            margin-top: 50px;
            text-align: center;
            font-size: 0.9em;
            color: #6c757d;
        }
        #generated-code {
            max-height: 300px;
            overflow-y: auto;
        }
        /* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #f7f9fc, #eef1f5);
    margin: 0;
    color: #333;
}

h1, h3 {
    font-weight: 700;
    color: #2c3e50;
}

.container {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: auto;
    margin-top: 3rem;
}

/* Form Styles */
form {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

label {
    font-weight: 600;
    color: #34495e;
}

input[type="text"], 
textarea {
    border: 1px solid #d1d8e0;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

button[type="submit"] {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button[type="submit"]:hover {
    background: linear-gradient(135deg, #2980b9, #2471a3);
}

/* Flash Message */
#flashMessage {
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
}

.alert-success {
    background: #2ecc71;
    color: #fff;
}

.alert-danger {
    background: #e74c3c;
    color: #fff;
}

/* Generated Code Section */
#codeContainer {
    margin-top: 2rem;
    background: #fdfdfd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

pre {
    background: #f3f4f6;
    border: 1px solid #d1d8e0;
    padding: 1rem;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    max-height: 300px;
    overflow-y: auto;
}

/* Copy Button */
#copyButton {
    position: absolute;
    top: 50px;
    right: 25px;
    background: #34495e;
    color: #fff;
    border: none;
    padding: 0.6rem 0.4rem;
    font-size: 0.9rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    opacity: 0.6;
}

#copyButton:hover {
    background: #2c3e50;
}

/* Footer */
#footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #95a5a6;
}

#footer a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: #2980b9;
}