/* Soskoffer Core – Frontend CSS */

.soskoffer-form-group {
    margin-bottom: 16px;
}
.soskoffer-form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--soskoffer-text, #1A1A2E);
}
.soskoffer-btn {
    background: var(--soskoffer-primary, #2C6FAC);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
    text-decoration: none;
}
.soskoffer-btn:hover {
    background: var(--soskoffer-secondary, #4CAF82);
}
.soskoffer-btn:disabled {
    background: #aaa;
    cursor: not-allowed;
}
