/**
 * 포인트 페이지 스타일
 */

/* 포인트 내역 아이템 */
.point-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.point-item:last-child {
    border-bottom: none;
}

.point-item-info {
    flex: 1;
}

.point-item-desc {
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 4px;
    font-weight: 500;
}

.point-item-date {
    font-size: 12px;
    color: var(--color-text-light);
}

.point-item-amount {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    margin-left: 16px;
}

.point-earn {
    color: var(--color-primary);
}

.point-use {
    color: #ef4444;
}

/* 빈 상태 */
.point-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-light);
}

.point-empty p {
    font-size: 15px;
}
