/* SalesPal form components - v1 visual values */

.sp-input {
    padding: 0.875rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    min-height: 48px;
    font-family: Arial, sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.sp-input:focus {
    border-color: #43B02A;
    box-shadow: 0 0 0 3px rgba(67, 176, 42, 0.15);
    outline: none;
}

.sp-input-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    min-height: auto;
}

.sp-select {
    padding: 0.875rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    min-height: 48px;
    font-family: Arial, sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
    background-color: white;
}

.sp-select:focus {
    border-color: #43B02A;
    box-shadow: 0 0 0 3px rgba(67, 176, 42, 0.15);
    outline: none;
}

.sp-select-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    min-height: auto;
}

.sp-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.375rem;
}

.sp-form-text {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.25rem;
}

.sp-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.sp-checkbox-input {
    width: 18px;
    height: 18px;
    accent-color: #43B02A;
    cursor: pointer;
}

.sp-checkbox-label {
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
}

.sp-input-group {
    display: flex;
    gap: 0;
}

.sp-input-group .sp-input {
    border-radius: 8px 0 0 8px;
}

.sp-input-group .sp-btn {
    border-radius: 0 8px 8px 0;
}

.sp-input-group-text {
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    background: #f8f9fa;
    border: 1.5px solid #e0e0e0;
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 0.875rem;
    color: #666;
}

.sp-input-group-text + .sp-input {
    border-radius: 0 8px 8px 0;
}

.sp-form-group {
    margin-bottom: 1rem;
}
