/* File: public3000/styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #333;
}

#scriptGenerator, #scriptList {
    margin-bottom: 20px;
}

.elementInput {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 3px;
}

.form-group {
    margin-bottom: 10px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

button {
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.removeElement {
    background-color: #dc3545;
    margin-top: 10px;
}

.removeElement:hover {
    background-color: #c82333;
}

.addElement, .generateScript {
    display: block;
    margin-top: 10px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 3px;
}

.scriptName {
    font-weight: bold;
}

.scriptActions {
    margin-top: 5px;
}

.scriptActions button {
    margin-right: 5px;
}

code {
    display: block;
    margin-top: 5px;
    padding: 5px;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 3px;
    font-family: monospace;
}
.header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.newScript {
    background-color: #28a745;
    display: none;
}

.newScript:hover {
    background-color: #218838;
}