/* Styles for delete/minus action button */

.own-entry-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.delete-btn {
    background: transparent;
    border: 2px solid #ddd;
    color: #999;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.delete-btn:hover {
    background: #fff5f5;
    border-color: var(--primary-light);
    color: var(--primary-main);
    transform: scale(1.1);
}

.delete-btn svg {
    width: 16px;
    height: 16px;
}