.bee1-points-box {
    padding: .5em;
    border: 1px solid #eee;
    margin-bottom: 2em;
    background: #f9f9f9;
    border-radius: 8px;
}

.bee1-points-box h3 {
    margin-top: 0;
    font-size: 1.2em;
    font-weight: bold;
}

.bee1-points-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 1em;
}

.bee1-points-form input[type="number"] {
    width: 100px;
    padding: 0.4em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.bee1-points-form .button {
    white-space: nowrap;
}
.button.bee1-remove-points{
    background: var(--e-global-color-30a8deb)!important;
}
.button.bee1-apply-points{
    background: #8fae1bd4!important;
}

.bee1-points-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    margin: 32px auto;
    max-width: 600px;
}
.bee1-points-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    flex: 1 1 0;
    padding: 32px 24px 24px 24px;
    text-align: center;
    position: relative;
    min-width: 160px;
    transition: box-shadow 0.2s;
}
.bee1-points-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.bee1-points-label {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}
.bee1-points-value {
    font-size: 2em;
    color: #0073aa;
    font-weight: bold;
    margin-bottom: 0;
}
@media (max-width: 600px) {
    .bee1-points-grid { flex-direction: column; gap: 16px; }
}