/* Base layout */
.fxc-wrapper {
    max-width: 900px;
    margin: 40px auto;
    background: #f3faea;
    padding: 30px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

/* Title */
.fxc-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Step header */
.fxc-progress {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.fxc-progress span {
    font-weight: 600;
    color: #aaa;
    border-bottom: 3px solid transparent;
    padding-bottom: 6px;
}

.fxc-progress span.active {
    color: #2e7d32;
    border-color: #2e7d32;
}

/* Form layout */
.fxc-step {
    display: none;
}

.fxc-step.active {
    display: block;
}

.fxc-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.fxc-row > div {
    flex: 1;
}

/* Inputs */
.fxc-row label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
}

.fxc-row input,
.fxc-row select {
    width: 100%;
    padding: 10px;
    border: 1px solid #b5d6a6;
    border-radius: 4px;
    font-size: 15px;
}

/* Buttons */
.fxc-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.fxc-actions button {
    background: #4caf50;
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
}

.fxc-actions button:hover {
    background: #43a047;
}

/* Mobile */
@media (max-width: 600px) {
    .fxc-row {
        flex-direction: column;
    }
}
