.ftg-generator {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.h2{
    color: #060097;
}

.ftg-subtitle {
    color: #666;
    margin-top: -15px;
    margin-bottom: 20px;
}

.ftg-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.ftg-control-group {
    display: flex;
    flex-direction: column;
}

.ftg-control-group label {
    margin-bottom: 5px;
    font-weight: 600;
}

.ftg-control-group select,
.ftg-control-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.ftg-button {
    padding: 10px 20px;
    background: #060097;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.ftg-button:hover {
    background: #fdcc55;
    color: white;
}

.ftg-copy-btn {
    background: #28a745;
    margin-top: 10px;
}

.ftg-copy-btn:hover {
    background: #218838;
}

.ftg-output {
    background: white;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #eee;
    min-height: 200px;
    margin-top: 20px;
}

@media (max-width: 600px) {
    .ftg-controls {
        grid-template-columns: 1fr;
    }
}