
.manadqr-zekr-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px auto;
    max-width: 800px;
    direction: rtl;
    font-family: Kalameh, sans-serif;
    background: #e9f7f5;
    padding: 24px 32px;
    border-radius: 20px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.04);
}

.zekr-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 20px 20px 20px;
    text-align: center;
    width: 150px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}
.zekr-card:hover {
    transform: translateY(-2px);
}

.zekr-card .count {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
}

.zekr-card .label {
    font-size: 16px;
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
    line-height: 1.4;
    white-space: nowrap;
}

.zekr-card .increment {
    background-color: #a0d7cb;
    color: #fff;
    font-size: 20px;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.zekr-card .increment:hover {
    background-color: #84c5b5;
}
