
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

.generator {
    max-width: 800px; 
    margin: 0 auto;
}

.tab-navigation {
    display: flex;
    justify-content: space-between;  
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px;
    border: none; 
    background: none;
    cursor: pointer;
    color: #333;
}

.tab-button.active {
    font-weight: bold;
    border-bottom: 2px solid #333;  
}

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

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

input[type="text"],  
input[type="number"],
textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;  
}

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

.preview-panel {
    margin-top: 40px;
}

.preview-content {
    border: 1px solid #ccc;
    padding: 20px;
    white-space: pre-wrap;  
}

.highlighted-text {
    background-color: #fff9c4;
    display: inline-block;
    padding: 2px 0;  
    animation: highlight 2s;
}

@keyframes highlight {
    0% { background-color: #ffeb3b; }
    100% { background-color: #fff9c4; }  
}
