/* --- TOMOBILA ADD LISTING TEMPLATE --- */

/* Wrapper */
.tomobila-add-wrapper {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    padding: 30px;
    max-width: 1100px;
    margin: 40px auto;
    font-family: 'Inter', Arial, sans-serif;
}

/* Step Tabs */
.tomobila-steps {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}
.tomobila-steps .step {
    flex: 1;
    padding: 15px 10px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 600;
    color: #999;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}
.tomobila-steps .step.active {
    color: #153e4d;
    border-color: #153e4d;
}

/* Step Content */
.tomobila-step-pane {
    display: block;
    animation: fadeIn 0.3s ease;
}
.tomobila-step-pane[hidden] {
    display: none;
}

/* Form Fields */
.tomobila-form input[type="text"],
.tomobila-form input[type="number"],
.tomobila-form input[type="email"],
.tomobila-form select,
.tomobila-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 20px;
    background: #f9f9f9;
    transition: border-color 0.2s ease;
}
.tomobila-form input:focus,
.tomobila-form select:focus,
.tomobila-form textarea:focus {
    border-color: #153e4d;
    background: #fff;
}

/* Action Buttons */
.tomobila-actions {
    margin-top: 20px;
    text-align: right;
}
.tomobila-actions button {
    background: #153e4d;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}
.tomobila-actions button:hover {
    background: #102d39;
}
.tomobila-actions .tomobila-prev {
    background: #ccc;
    color: #333;
    margin-right: 10px;
}
.tomobila-actions .tomobila-prev:hover {
    background: #aaa;
}

/* Bottom Navigation */
.tomobila-actions.bottom {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 30px;
}

/* Progress Bar (Motors) */
.tomobila-add-wrapper .stm_progress_bar {
    margin-top: 30px;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}