implemented step 09 by Gemini
- added 3. step of wizard with smart questions
This commit is contained in:
@ -277,6 +277,42 @@ textarea:focus, input[type="text"]:focus, input[type="email"]:focus {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
/* Service Items */
|
||||
.service-item {
|
||||
background-color: #f8fafc;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 0.5rem;
|
||||
padding: 1.25rem;
|
||||
margin-bottom: 1rem;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.service-item-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.btn-remove-service {
|
||||
background: none;
|
||||
border: none;
|
||||
color: #ef4444;
|
||||
cursor: pointer;
|
||||
padding: 0.25rem;
|
||||
font-size: 1.25rem;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.btn-remove-service:hover {
|
||||
color: #dc2626;
|
||||
}
|
||||
|
||||
/* Smart Questions */
|
||||
.smart-question-item {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
button:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
|
||||
Reference in New Issue
Block a user