.loyalty-points-block {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.progress-bar-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.progress-bar {
    flex: 1;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: visible;
    position: relative;
    margin: 0 10px;
    height: 20px;
}

.progress {
    background: #DAAC50;
    height: 100%;
    position: relative;
}

.marker {
    position: absolute;
    top: -30px;
    right: 0;
    background: #fff;
    border: 1px solid #DAAC50;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 12px;
    transform: translateX(50%);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    color: #DAAC50;
    z-index: 1;
}

.badge-container {
    text-align: center;
}

.badge {
    background: #ddd;
    border-radius: 5px;
    padding: 35px 10px;
    font-size: 12px;
    font-weight: bold;
    background-color: #121212;
    color: #fff;
    overflow: hidden;
    display: block;
    position: relative;
}

.badge-value {
    display: block;
    margin-top: 5px;
    font-size: 10px;
    color: #fff;
}

.badge-bg {
    height: 128px;
    width: 128px;
    z-index: 1;
    position: absolute;
    top: -75px;
    right: -75px;
    border-radius: 50%;
}

.badge.regular .badge-bg {
    background: #bfbfbf;
}

.badge.premium .badge-bg {
    background: #DAAC50;
}

.loyalty-orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.loyalty-orders-table th,
.loyalty-orders-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.loyalty-orders-table th {
    background-color: #f2f2f2;
}
