.loyalty-points-container {
    margin-bottom: 15px;
}

.loyalty-points-slider-container {
    margin-bottom: 10px;
}

.loyalty-points-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 0.8em;
    color: #666;
}

.loyalty-points-input-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.loyalty-points-input-container input {
    width: 80px !important;
    text-align: center;
}

.loyalty-points-available {
    font-size: 0.9em;
    color: #666;
}

.loyalty-points-value {
    margin-top: 10px;
    font-size: 1.1em;
}

.loyalty-points-quick-btns {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.loyalty-points-quick-btn {
    padding: 3px 8px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.8em;
}

.loyalty-points-quick-btn:hover {
    background: #e5e5e5;
}

input[type=range] {
    -webkit-appearance: none;
    height: 5px;
    background: #ddd;
    border-radius: 5px;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #4CAF50;
    border-radius: 50%;
    cursor: pointer;
}

.loyalty-dashboard {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.progress-container {
    margin: 20px 0;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 20px;
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.progress {
    height: 100%;
    background: #4CAF50;
    transition: width 0.3s;
}

.loyalty-checkout-info {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #4CAF50;
}

.loyalty-program-info {
    max-width: 800px;
    margin: 0 auto;
}

.loyalty-levels {
    background: #f0f7ff;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.loyalty-faq {
    background: #fff8f0;
    padding: 15px;
    border-radius: 5px;
}

.loyalty-points-available {
    font-size: 0.9em;
    color: #666;
}

#loyalty-user-search-results {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    background: #fff;
}

#loyalty-user-search-results li:hover {
    background: #f5f5f5;
}